Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/6353966abdc31a7806c6d4d62154cf3da7c86adf?style=split&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix cache key

pull/6033/head
David Ullmer 4 years ago
parent 96e05e5b66
commit 6353966abd

@ -281,7 +281,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb
/// <returns>The TMDb person information or null if not found.</returns> /// <returns>The TMDb person information or null if not found.</returns>
public async Task<Person> GetPersonAsync(int personTmdbId, string language, CancellationToken cancellationToken) public async Task<Person> GetPersonAsync(int personTmdbId, string language, CancellationToken cancellationToken)
{ {
var key = $"person-{personTmdbId.ToString(CultureInfo.InvariantCulture)}"; var key = $"person-{personTmdbId.ToString(CultureInfo.InvariantCulture)}-{language}";
if (_memoryCache.TryGetValue(key, out Person person)) if (_memoryCache.TryGetValue(key, out Person person))
{ {
return person; return person;

Loading…
Cancel
Save