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

Added debug messages to check quality.

pull/2/head
Leonardo Galli 8 years ago
parent 39322cbbca
commit 5cace1d857

@ -124,6 +124,7 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport
localMovie.MediaInfo = _videoFileInfoReader.GetMediaInfo(file);
if (shouldCheckQuality)
{
_logger.Debug("Checking quality for this video file to make sure nothing mismatched.");
var width = localMovie.MediaInfo.Width;
var current = localMovie.Quality;
var qualityName = current.Quality.Name.ToLower();
@ -255,6 +256,7 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport
}
if (updated != null && updated != current)
{
_logger.Debug("Quality ({0}) of the file is different than the one we have ({1})", updated, current);
updated.QualitySource = QualitySource.MediaInfo;
localMovie.Quality = updated;
}

Loading…
Cancel
Save