Stop saving Jellyfin API key in settings xml
This commit is contained in:
parent
f7479bc730
commit
e91de654d7
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user