1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-23 08:22:39 +00:00

Banners folder moved to root.

This commit is contained in:
kay.one 2011-12-01 23:20:33 -08:00
parent 76608fc440
commit 08a5b28f40
2 changed files with 3 additions and 3 deletions

View file

@ -92,12 +92,12 @@ public static string GetMediaCoverPath(this EnviromentProvider enviromentProvide
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)

View file

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