Skip to content

Commit

Permalink
Update soundcloud.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DunnesH authored Apr 14, 2024
1 parent 315b354 commit aaac7f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/extractor/soundcloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ def _real_extract(self, url):
self._resolv_url(url), user_id, 'Downloading user info', headers=self._HEADERS)

return self._extract_playlist(
f'{self._API_V2_BASE}stream/users/{user["id"]}', str(user['id']), user.get('username'))
f'{self._API_V2_BASE}users/{user["id"]}/tracks', str(user['id']), user.get('username'))


class SoundcloudTrackStationIE(SoundcloudPagedPlaylistBaseIE):
Expand Down

0 comments on commit aaac7f4

Please sign in to comment.