Skip to content

Commit

Permalink
Return models as array
Browse files Browse the repository at this point in the history
  • Loading branch information
missionfloyd committed Sep 24, 2024
1 parent 4399f28 commit 1d3df2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gallery_dl/extractor/girlsreleased.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def images(self, id):
"title": json["name"] or json["id"],
"id": json["id"],
"site": json["site"],
"model": ", ".join(model for _, model in json["models"])
"model": [model for _, model in json["models"]]
}
yield Message.Directory, data
for image in json["images"]:
Expand Down

0 comments on commit 1d3df2c

Please sign in to comment.