Browse Source

Don't use fanart that doesn't exist. fix #282

pull/381/merge
Ruud 13 years ago
parent
commit
442c4e5aea
  1. 2
      couchpotato/core/providers/metadata/base.py

2
couchpotato/core/providers/metadata/base.py

@ -75,7 +75,7 @@ class MetaDataBase(Plugin):
break
for cur_file in data['library'].get('files', []):
if cur_file.get('type_id') is file_type.get('id'):
if cur_file.get('type_id') is file_type.get('id') and os.path.isfile(cur_file.get('path')):
return cur_file.get('path')
def getFanart(self, movie_info = {}, data = {}):

Loading…
Cancel
Save