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:
parent
76608fc440
commit
08a5b28f40
2 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
|
@ -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…
Reference in a new issue