Fixed issue with theTVDB IndexerAPI _parseActors method improperly parsing the data returned from the api causing an exception to occur during metadata refreshes.

This commit is contained in:
echel0n 2014-12-13 02:32:08 -08:00
parent 2adfa81341
commit 4fd92a8631
1 changed files with 2 additions and 2 deletions

View File

@ -797,9 +797,9 @@ class Tvdb:
return
cur_actors = Actors()
for curActorItem in actorsEt["actor"]:
for curActorItem in actorsEt["actor"].items():
curActor = Actor()
for k, v in curActorItem.items():
for k, v in curActorItem:
k = k.lower()
if v is not None:
if k == "image":