Skip to content

Commit

Permalink
fix bug for studio override when no channels prop
Browse files Browse the repository at this point in the history
  • Loading branch information
nrg101 committed Jan 30, 2025
1 parent 4afecd4 commit d83860b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapers/EvilAngel/EvilAngel.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def determine_studio(api_object: dict[str, Any]) -> str | None:
(item for item in [
"Joey Silvera",
"Mike Adriano",
] if item in [c.get("name") for c in api_object.get("channels")]),
] if item in [c.get("name") for c in api_object.get("channels", [])]),
None
):
log.debug(f"matched director_match '{director_match}'")
Expand Down

0 comments on commit d83860b

Please sign in to comment.