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
{{ message }}
This repository was archived by the owner on Jan 22, 2022. It is now read-only.
I've been using this function to remove playlist entries successfully, but I notice that according to the documentation, the function remove_entries_from_playlist():
Returns a list of entry ids that were removed.
However, it seems that the function will basically return whatever is specified as the input parameter. As a simple example:
api.remove_entries_from_playlist(u'hello')
Will return [u'hello]', where I would expect it to return None since no playlist entry ID exists with this value. Is my understanding correct here?
I'm using version 12.0.0, but from the changelog I believe this also applies for the latest version.