Merge pull request #780 from JackDandy/feature/ChangeUnaired

Change prevent any unaired changes due to ui.
This commit is contained in:
JackDandy 2016-09-25 16:04:33 +01:00 committed by GitHub
commit 512a67d0e5

View file

@ -1871,7 +1871,7 @@ class Home(MainHandler):
with epObj.lock:
# don't let them mess up UNAIRED episodes
if epObj.status == UNAIRED and not sickbeard.SEARCH_UNAIRED:
if epObj.status == UNAIRED:
logger.log(u'Refusing to change status of ' + curEp + ' because it is UNAIRED', logger.ERROR)
continue