Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/2e3c5ed3465c412893a80fe23f11a5496a2c6425 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from crobibero/xml-cache-delete

(cherry picked from commit ec6f7bdcff)
Signed-off-by: crobibero <cody@robibe.ro>
pull/7696/head
Cody Robibero 3 years ago committed by crobibero
parent 1ed57f48a5
commit 2e3c5ed346

@ -79,7 +79,12 @@ namespace Emby.Server.Implementations.LiveTv.Listings
return UnzipIfNeeded(info.Path, cacheFile);
}
File.Delete(cacheFile);
// Must check if file exists as parent directory may not exist.
if (File.Exists(cacheFile))
{
File.Delete(cacheFile);
}
_logger.LogInformation("Downloading xmltv listings from {Path}", info.Path);
Directory.CreateDirectory(Path.GetDirectoryName(cacheFile));

Loading…
Cancel
Save