remove no user bypass for SickBeard. Fixes #1244

This commit is contained in:
clinton-hall 2017-04-25 19:36:41 +09:30
commit cd2e466b30

View file

@ -226,8 +226,8 @@ class autoProcessTV(object):
[fork_params.pop(k) for k, v in fork_params.items() if v is None]
if status == 0:
if not username and not apikey:
logger.info('No SickBeard username or Sonarr apikey entered. Processing completed.')
if not apikey:
logger.info('No Sonarr apikey entered. Processing completed.')
return [0, "{0}: Successfully post-processed {1}".format(section, inputName)]
logger.postprocess("SUCCESS: The download succeeded, sending a post-process request", section)
else: