match release even if all UPPER in CP database. Fixes #1300

This commit is contained in:
clinton-hall 2018-01-24 22:36:32 +13:00
parent 45b9115634
commit 2063e302ca

View file

@ -75,7 +75,7 @@ class autoProcessMovie(object):
if release['status'] not in ['snatched', 'downloaded', 'done']: if release['status'] not in ['snatched', 'downloaded', 'done']:
continue continue
if download_id: if download_id:
if download_id != release['download_info']['id']: if download_id.lower() != release['download_info']['id'].lower():
continue continue
id = release['_id'] id = release['_id']