Skip to content

Commit 1d3df2c

Browse files
committed
Return models as array
1 parent 4399f28 commit 1d3df2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gallery_dl/extractor/girlsreleased.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def images(self, id):
3636
"title": json["name"] or json["id"],
3737
"id": json["id"],
3838
"site": json["site"],
39-
"model": ", ".join(model for _, model in json["models"])
39+
"model": [model for _, model in json["models"]]
4040
}
4141
yield Message.Directory, data
4242
for image in json["images"]:

0 commit comments

Comments
 (0)