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

Preventing more errors when move fails

pull/4/head
Mark McDowall 12 years ago
parent a4d6851be1
commit 2df51615b7

@ -68,6 +68,13 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport
if (newDownload)
{
episodeFile = _episodeFileUpgrader.UpgradeEpisodeFile(episodeFile, localEpisode);
if (episodeFile == null)
{
_logger.Error("Failed to move [{0}], aborting processing", localEpisode);
continue;
}
_messageAggregator.PublishEvent(new EpisodeImportedEvent(episodeFile));
}

Loading…
Cancel
Save