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

Added size information when Size spec rejects import

pull/3113/head
Mark McDowall 11 years ago
parent acee943d47
commit 259c408b67

@ -41,7 +41,7 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Specifications
if (freeSpace < localEpisode.Size + 100.Megabytes())
{
_logger.Warn("Not enough free space to import: {0}", localEpisode);
_logger.Warn("Not enough free space ({0}) to import: {1} ({2})", freeSpace, localEpisode, localEpisode.Size);
return false;
}
}

Loading…
Cancel
Save