From 41be79eeb1c8783b78b011d7625da7cdd204a064 Mon Sep 17 00:00:00 2001 From: scampower3 <81431263+scampower3@users.noreply.github.com> Date: Wed, 22 May 2024 21:22:11 +0800 Subject: [PATCH] Adds a option to include specials for missing episode provider (#144) --- Jellyfin.Plugin.Tvdb/Configuration/PluginConfiguration.cs | 5 +++++ Jellyfin.Plugin.Tvdb/Configuration/config.html | 6 ++++++ .../Providers/TvdbMissingEpisodeProvider.cs | 7 +++++++ 3 files changed, 18 insertions(+) diff --git a/Jellyfin.Plugin.Tvdb/Configuration/PluginConfiguration.cs b/Jellyfin.Plugin.Tvdb/Configuration/PluginConfiguration.cs index 2c475bb..e2630fe 100644 --- a/Jellyfin.Plugin.Tvdb/Configuration/PluginConfiguration.cs +++ b/Jellyfin.Plugin.Tvdb/Configuration/PluginConfiguration.cs @@ -54,5 +54,10 @@ public int MetadataUpdateInHours /// Gets or sets the fallback languages. /// public string FallbackLanguages { get; set; } = string.Empty; + + /// + /// Gets or sets a value indicating whether to include missing specials. + /// + public bool IncludeMissingSpecials { get; set; } = true; } } diff --git a/Jellyfin.Plugin.Tvdb/Configuration/config.html b/Jellyfin.Plugin.Tvdb/Configuration/config.html index 5e7dbc2..732dfa0 100644 --- a/Jellyfin.Plugin.Tvdb/Configuration/config.html +++ b/Jellyfin.Plugin.Tvdb/Configuration/config.html @@ -49,6 +49,10 @@

TheTVDB Settings:

If the preferred metadata language is not available, the plugin will attempt to retrieve metadata in these languages (in the order listed). Separate language codes with commas (e.g., en, fr, de, ja). +