Skip to content

Commit

Permalink
fix dynamic url
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryu1845 committed Dec 18, 2021
1 parent 4fa8b16 commit b12ab19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twspace_dl/TwspaceDL.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def dyn_url(self) -> str:
def master_url(self) -> str:
"""Master URL for a space"""
master_url = re.sub(
r"(?<=/audio-space/)\w*", "master_playlist.m3u8", self.dyn_url
r"(?<=/audio-space/).*", "master_playlist.m3u8", self.dyn_url
)
return master_url

Expand Down

0 comments on commit b12ab19

Please sign in to comment.