Private GIT

Skip to content
Snippets Groups Projects
Commit 9d910236 authored by miigotu's avatar miigotu
Browse files

Merge pull request #3000 from SiCKRAGETV/fix-pp-bug

Fix a bug where file would not PP a better quality when existing qual…
parents 5e38535b 9ba51541
No related branches found
No related tags found
No related merge requests found
......@@ -910,7 +910,7 @@ class PostProcessor(object):
if not priority_download:
# Not a priority and the quality is lower than what we already have
if (new_ep_quality < old_ep_quality and new_ep_quality != common.Quality.UNKNOWN) and not existing_file_status == PostProcessor.DOESNT_EXIST:
if (new_ep_quality < old_ep_quality and old_ep_quality != common.Quality.UNKNOWN) and not existing_file_status == PostProcessor.DOESNT_EXIST:
self._log(u"File exists and new file quality is lower than existing, marking it unsafe to replace")
return False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment