mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Fixed broken tests.
Fixed spelling mistake.
This commit is contained in:
parent
842f811ef7
commit
861f6c1a0c
3 changed files with 13 additions and 9 deletions
|
@ -34,12 +34,12 @@ namespace NzbDrone.Core.Providers
|
|||
|
||||
public virtual bool Download(ProgressNotification notification, Series series)
|
||||
{
|
||||
var bannerPath = _environmentProvider.GetBannerPath();
|
||||
|
||||
logger.Trace("Ensuring Banner Folder exists: ", bannerPath);
|
||||
_diskProvider.CreateDirectory(bannerPath);
|
||||
//var bannerPath = _environmentProvider.GetBannerPath();
|
||||
|
||||
var bannerFilename = Path.Combine(bannerPath, series.SeriesId.ToString()) + ".jpg";
|
||||
logger.Trace("Ensuring Banner Folder exists: ", _environmentProvider.GetBannerPath());
|
||||
_diskProvider.CreateDirectory(_environmentProvider.GetBannerPath());
|
||||
|
||||
var bannerFilename = Path.Combine(_environmentProvider.GetBannerPath(), series.SeriesId.ToString()) + ".jpg";
|
||||
|
||||
notification.CurrentMessage = string.Format("Downloading banner for '{0}'", series.Title);
|
||||
logger.Trace("Downloading banner for '{0}'", series.Title);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue