Private GIT

Skip to content
Snippets Groups Projects
Commit 30920654 authored by Curtis Bevan's avatar Curtis Bevan
Browse files

[FIX] Issue 1876: Allow SD x264 TV Snatching

parent 62bec4c2
No related branches found
Tags
No related merge requests found
...@@ -210,6 +210,9 @@ def pickBestResult(results, quality_list=None): ...@@ -210,6 +210,9 @@ def pickBestResult(results, quality_list=None):
bestResult = cur_result bestResult = cur_result
elif "internal" in bestResult.name.lower() and "internal" not in cur_result.name.lower(): elif "internal" in bestResult.name.lower() and "internal" not in cur_result.name.lower():
bestResult = cur_result bestResult = cur_result
elif "xvid" in bestResult.name.lower() and "x264" in cur_result.name.lower():
logger.log(u"Preferring " + cur_result.name + " (x264 over xvid)")
bestResult = cur_result
if bestResult: if bestResult:
logger.log(u"Picked "+bestResult.name+" as the best", logger.DEBUG) logger.log(u"Picked "+bestResult.name+" as the best", logger.DEBUG)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment