Mopidy doesn't accept playlist names when not in quotes.
The documentation says somewhere (sorry, I can't find it) to put every string in quotes, but MPD tolerates them without.
http://cl.ly/image/3J173L2Z0h0M (Mopidy is on the left, mpd on the right)
I don't know if some clients do not wrap the string around quotes, but I think that it needs to be implemented :)
Also, MPD handles the playlist names in a broken way (I noticed this while debugging my application) :
If you have a playlist named "X Y", MPD doesn't accept 'listplaylistinfo X\ Y'. 'listplaylistinfo "X Y"' works, as this is the expected behaviour, but 'listplaylistinfo "X\ Y"' also works !
That is totally wrong, because strings obviously do not work that way.
I'll let you decide if you want to implement this bugged behaviour into Mopidy. Personally, I'd say not to, but it's your call !
Mopidy doesn't accept playlist names when not in quotes.
The documentation says somewhere (sorry, I can't find it) to put every string in quotes, but MPD tolerates them without.
http://cl.ly/image/3J173L2Z0h0M (Mopidy is on the left, mpd on the right)
I don't know if some clients do not wrap the string around quotes, but I think that it needs to be implemented :)
Also, MPD handles the playlist names in a broken way (I noticed this while debugging my application) :
If you have a playlist named "X Y", MPD doesn't accept 'listplaylistinfo X\ Y'. 'listplaylistinfo "X Y"' works, as this is the expected behaviour, but 'listplaylistinfo "X\ Y"' also works !
That is totally wrong, because strings obviously do not work that way.
I'll let you decide if you want to implement this bugged behaviour into Mopidy. Personally, I'd say not to, but it's your call !