Banners folder moved to root.

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

View file

@ -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)