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

Banners folder moved to root.

pull/4/head
kay.one 14 years ago
parent 76608fc440
commit 08a5b28f40

@ -92,12 +92,12 @@ namespace NzbDrone.Common
public static string GetBannerPath(this EnviromentProvider enviromentProvider)
{
return Path.Combine(enviromentProvider.GetMediaCoverPath(), "Banner");
return Path.Combine(enviromentProvider.GetMediaCoverPath(), "Banners");
}
public static string GetFanArthPath(this EnviromentProvider enviromentProvider)
{
return Path.Combine(enviromentProvider.GetMediaCoverPath(), "Fanart");
return Path.Combine(enviromentProvider.GetMediaCoverPath(), "Fanarts");
}
public static string GetCacheFolder(this EnviromentProvider enviromentProvider)

@ -78,7 +78,7 @@
if(Model.HasBanner)
{
bannerUrl = "../../MediaCover/Banner/" + Model.SeriesId + ".jpg";
bannerUrl = "../../MediaCover/Banners/" + Model.SeriesId + ".jpg";
}
}
<img src="@bannerUrl" alt="Banner"/>

Loading…
Cancel
Save