Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/30a954300e641ea62fe2ba4ac36ba22e9bc83c1d You should set ROOT_URL correctly, otherwise the web may not work correctly.
pull/702/head
LukePulverenti Luke Pulverenti luke pulverenti 13 years ago
parent aa64577b21
commit 30a954300e

@ -235,15 +235,15 @@ namespace MediaBrowser.Controller.Library
{
name = FileData.GetValidFilename(name);
string key = Path.Combine(path, name);
path = Path.Combine(path, name);
// Look for it in the cache, if it's not there, create it
if (!ImagesByNameItemCache.ContainsKey(key))
if (!ImagesByNameItemCache.ContainsKey(path))
{
ImagesByNameItemCache[key] = CreateImagesByNameItem<T>(path, name);
ImagesByNameItemCache[path] = CreateImagesByNameItem<T>(path, name);
}
return ImagesByNameItemCache[key] as Task<T>;
return ImagesByNameItemCache[path] as Task<T>;
}
/// <summary>

Loading…
Cancel
Save