From 7df1473f36cfbe56e083e7fcd3b5e700b4a3c6b5 Mon Sep 17 00:00:00 2001 From: LJQ Date: Sat, 2 Mar 2024 16:38:34 +0800 Subject: [PATCH] Minor renames --- Jellyfin.Plugin.Tvdb/TvdbClientManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jellyfin.Plugin.Tvdb/TvdbClientManager.cs b/Jellyfin.Plugin.Tvdb/TvdbClientManager.cs index a00904d..3507720 100644 --- a/Jellyfin.Plugin.Tvdb/TvdbClientManager.cs +++ b/Jellyfin.Plugin.Tvdb/TvdbClientManager.cs @@ -450,13 +450,13 @@ public async Task> GetArtworkTypeAsync(CancellationTo break; } - key = $"FindTvdbEpisode_{seriesTvdbIdString}_{seasonNumber.Value.ToString(CultureInfo.InvariantCulture)}_{episodeNumber.Value.ToString(CultureInfo.InvariantCulture)}"; + key = $"FindTvdbEpisodeId_{seriesTvdbIdString}_{seasonNumber.Value.ToString(CultureInfo.InvariantCulture)}_{episodeNumber.Value.ToString(CultureInfo.InvariantCulture)}"; } else if (searchInfo.PremiereDate.HasValue) { // tvdb expects yyyy-mm-dd format airDate = searchInfo.PremiereDate.Value.ToString("yyyy-MM-dd", CultureInfo.InvariantCulture); - key = $"FindTvdbEpisode_{seriesTvdbIdString}_{airDate}"; + key = $"FindTvdbEpisodeId_{seriesTvdbIdString}_{airDate}"; } if (key != null && _memoryCache.TryGetValue(key, out string? episodeTvdbId))