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
Using find feels gross because it instantiates all the playlists (maybe a great many) when I only need one. Using new feels gross because if I mistakenly ask for a playlist that does not exist it will be created.
I'd prefer to be able to do something like:
playlist=@mpd.playlist(playlistname)
Does that seem reasonable?
The text was updated successfully, but these errors were encountered:
My UI uses the name of a playlist as the unique identifier. When I want to fetch a playlist with this name I must currently use one of the following:
Using
find
feels gross because it instantiates all the playlists (maybe a great many) when I only need one. Usingnew
feels gross because if I mistakenly ask for a playlist that does not exist it will be created.I'd prefer to be able to do something like:
Does that seem reasonable?
The text was updated successfully, but these errors were encountered: