You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was about to write a post explaining what I'm seeing but I just found this:
@pytest.mark.skip(reason="edit_song_library_status is currently broken due to server-side update")
So, maybe this was already known. What I'm seeing is that it pins/unpins songs from the "Listen Again" section on the home page instead of adding/removing from the library. I've also seen it return HTTP 409: Conflict.
Trying to think of an alternative for adding/removing individual songs from the library (mostly concerned with removing). I know from experience that you can call rate_playlist(playlistId, "INDIFFERENT") on the containing album of a song, and it will remove that song from the library. But with issue #743, it's not always a guarantee we can get the audioPlaylistId of an album using get_album(). So I'm currently searching for a robust way to remove a song from the library.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I was about to write a post explaining what I'm seeing but I just found this:
@pytest.mark.skip(reason="edit_song_library_status is currently broken due to server-side update")
So, maybe this was already known. What I'm seeing is that it pins/unpins songs from the "Listen Again" section on the home page instead of adding/removing from the library. I've also seen it return
HTTP 409: Conflict
.Trying to think of an alternative for adding/removing individual songs from the library (mostly concerned with removing). I know from experience that you can call
rate_playlist(playlistId, "INDIFFERENT")
on the containing album of a song, and it will remove that song from the library. But with issue #743, it's not always a guarantee we can get theaudioPlaylistId
of an album usingget_album()
. So I'm currently searching for a robust way to remove a song from the library.Beta Was this translation helpful? Give feedback.
All reactions