mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-04-24 08:12:13 -04:00
Fix for missing path returned by Radarr #213
This commit is contained in:
@@ -50,7 +50,7 @@ def update_movies():
|
||||
for movie in r.json():
|
||||
if movie['hasFile'] is True:
|
||||
if 'movieFile' in movie:
|
||||
if movie['movieFile']['relativePath'] is not None:
|
||||
if movie["path"] != None and movie['movieFile']['relativePath'] != None:
|
||||
try:
|
||||
overview = unicode(movie['overview'])
|
||||
except:
|
||||
|
||||
Reference in New Issue
Block a user