Browse Source

Stop saving Jellyfin API key in settings xml

Joe Rogers 1 năm trước cách đây
mục cha
commit
e91de654d7

+ 1 - 1
MediaBrowser.Providers/Plugins/Tmdb/Configuration/PluginConfiguration.cs

@@ -11,7 +11,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb
         /// Gets or sets a value to use as the API key for accessing TMDb. This is intentionally excluded from the
         /// settings page as the API key should not need to be changed by most users.
         /// </summary>
-        public string TmdbApiKey { get; set; } = TmdbUtils.ApiKey;
+        public string TmdbApiKey { get; set; } = string.Empty;
 
         /// <summary>
         /// Gets or sets a value indicating whether include adult content when searching with TMDb.

+ 5 - 1
MediaBrowser.Providers/Plugins/Tmdb/TmdbClientManager.cs

@@ -36,7 +36,11 @@ namespace MediaBrowser.Providers.Plugins.Tmdb
         public TmdbClientManager(IMemoryCache memoryCache)
         {
             _memoryCache = memoryCache;
-            _tmDbClient = new TMDbClient(Plugin.Instance.Configuration.TmdbApiKey);
+
+            var apiKey = Plugin.Instance.Configuration.TmdbApiKey;
+            apiKey = string.IsNullOrEmpty(apiKey) ? TmdbUtils.ApiKey : apiKey;
+            _tmDbClient = new TMDbClient(apiKey);
+
             // Not really interested in NotFoundException
             _tmDbClient.ThrowApiExceptions = false;
         }