Yeah I’m not sure, I’ll look into it though. I found the same issue reports you just did, and a few other issue reports in the SoundCloud extension that seem to imply that it has problems with empty lists and stuff. I don’t fully understand the issues yet because I actually just now found those while looking for something else.
So as soon as I solve my current problems I’ll see if there’s something that can be done to make this clearer or improve it a little.
Btw, I added the SoundCloud sets support to the backend (that’s my fork), but I only made sure it worked when adding and playing e.g. via MPC. I didn’t do any tests against the web interface because I don’t use it, so I’m actually not really sure if my set support will extend over to the web UI or if there’s something else that also needs to be done (the backend API is pretty much completely undocumented – a somewhat surprising move for a library that touts itself as extendable – so it’s hard to guess what all has to happen).
The only bits I added to get set support working are visible in the patch at https://github.com/JC3/mopidy-soundcloud/commit/5d546a584da3eb7292e9ccc915f73e5df94149d0, where I added the ability for it to see a “playlist” response then simply iterate through the tracks and add them like it would add a normal track, and that’s the highest-level spot I found to do it. So I think it should work in the web interface, too, assuming calling self.parse_track and self.sanitize_tracks is all that needs to happen.
Did you not find the documentation at https://docs.mopidy.com/en/latest/api/backend/ ? If it needs work then please do make a contribution. Or just suggest specifically what you found to be lacking.
@kingosticks I did not. For whatever reason I missed the entire “Reference” section all this time until I explicitly tried to find a path from the top level docs page to the link you just gave and found it at the bottom of the nav pane. At a quick read, it looks great, and is what I’ve been missing. I’ll go through the set support fork as soon as I can alongside these docs and make sure I didn’t leave anything out. Thanks.