Skip to content

Commit

Permalink
[subscribestar] fix file URLs (#5631)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed May 23, 2024
1 parent 6198dfa commit ea43496
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gallery_dl/extractor/subscribestar.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ def items(self):
item.update(data)
item["num"] = num
text.nameext_from_url(item.get("name") or item["url"], item)
if item["url"][0] == "/":
item["url"] = self.root + item["url"]
yield Message.Url, item["url"], item

def posts(self):
Expand Down

0 comments on commit ea43496

Please sign in to comment.