Private GIT

Skip to content
Snippets Groups Projects
Commit 4fd92a86 authored by echel0n's avatar echel0n
Browse files

Fixed issue with theTVDB IndexerAPI _parseActors method improperly parsing the...

Fixed issue with theTVDB IndexerAPI _parseActors method improperly parsing the data returned from the api causing an exception to occur during metadata refreshes.
parent 2adfa813
Branches
Tags
No related merge requests found
......@@ -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":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment