Browse Source

Migration: Don't fail on missing release file

pull/3944/head
Ruud 11 years ago
parent
commit
fa054b6b34
  1. 5
      couchpotato/core/database.py

5
couchpotato/core/database.py

@ -579,7 +579,10 @@ class Database(object):
continue
for f in release_files:
rfile = all_files[f.get('file_id')]
rfile = all_files.get(f.get('file_id'))
if not rfile:
continue
file_type = type_by_id.get(rfile.get('type_id')).get('identifier')
if not release['files'].get(file_type):

Loading…
Cancel
Save