diff options
author | Parker <contact@pkrm.dev> | 2024-11-29 01:36:06 -0600 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-11-29 01:36:06 -0600 |
commit | 4e8030eca4b1f4028268683ccfc7b481b1608dde (patch) | |
tree | d208e1c582733bd82993715b9cbc9266aca5390c /code/utils/source_helpers/spotify | |
parent | e2916fb0aaf5ae7c6306feb7bc13405aabb29ae6 (diff) |
Largely embed wording changes + other small tweaks + combine pause commands
Diffstat (limited to 'code/utils/source_helpers/spotify')
-rw-r--r-- | code/utils/source_helpers/spotify/playlist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/utils/source_helpers/spotify/playlist.py b/code/utils/source_helpers/spotify/playlist.py index c7313a4..7ca9c6a 100644 --- a/code/utils/source_helpers/spotify/playlist.py +++ b/code/utils/source_helpers/spotify/playlist.py @@ -15,7 +15,7 @@ async def load( """ Get the playlist info from the Spotify API """ - playlist_id = query.split("/playlist/")[1].split("?si=")[0] + playlist_id = query.split("/playlist/")[1] try: # Get the playlist info |