diff --git a/Jellyfin.Plugin.Tvdb/Configuration/PluginConfiguration.cs b/Jellyfin.Plugin.Tvdb/Configuration/PluginConfiguration.cs
index 3fdb272..69b5b65 100644
--- a/Jellyfin.Plugin.Tvdb/Configuration/PluginConfiguration.cs
+++ b/Jellyfin.Plugin.Tvdb/Configuration/PluginConfiguration.cs
@@ -52,14 +52,19 @@ public int CacheDurationInDays
public bool ImportSeasonName { get; set; } = false;
///
- /// Gets or sets a value indicating whether to include missing specials.
+ /// Gets or sets a value indicating whether to fallback to original language.
+ ///
+ public bool FallbackToOriginalLanguage { get; set; } = false;
+
+ ///
+ /// Gets or sets a value indicating whether to include missing specials for Missing Episode Provider.
///
public bool IncludeMissingSpecials { get; set; } = true;
///
- /// Gets or sets a value indicating whether to fallback to original language.
+ /// Gets or sets a value indicating whether to remove all missing episodes on refresh for Missing Episode Provider.
///
- public bool FallbackToOriginalLanguage { get; set; } = false;
+ public bool RemoveAllMissingEpisodesOnRefresh { get; set; } = false;
///
/// Gets or sets a value indicating whether to include original country in tags.
diff --git a/Jellyfin.Plugin.Tvdb/Configuration/config.html b/Jellyfin.Plugin.Tvdb/Configuration/config.html
index f293506..63759b1 100644
--- a/Jellyfin.Plugin.Tvdb/Configuration/config.html
+++ b/Jellyfin.Plugin.Tvdb/Configuration/config.html
@@ -44,15 +44,22 @@