-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WARNING SubsonicBackend does not implement playlists.as_list(). Please upgrade it. #13
Comments
same warning reoccurs while browsing. Also I dont get any indication that subsonic is running during startup of the server. All my other plugins say something like "Starting ..." Pretty sure im using version 4.7 with music cabinet |
Same issue for me. It looks like it's starting, but nothing from Subsonic shows up in any of the frontends (I've tried Moped, Musicbox and ncmpcpp, which all show Spotify correctly). Here's the terminal output when I start Mopidy manually:
"mopidy" is a valid Subsonic user, and it seems that mopidy-subsonic correctly creates a py-sonic player, so the URL and port is obviously correct. I use Arch Linux with a Mopidy install from the official repos. Mopidy-subsonic is from AUR and connects to Subsonic 5.2.1 on an Ubuntu 14.04 server. Subsonic is working perfectly through the web interface and through the Android app. I can confirm that trying to browse a frontend will add yet another warning to the terminal output. (I have no idea if the warning is related to the issue of the frontends not finding the Subsonic music or not. For all I know this could be two separate issues.) EDIT: If I try to search, I get this output:
|
Actually, while the issue itself (the error message) is still present, removing the outdated AUR package and replacing it with the most recent Github commit solved the issue of the frontend not finding anything in a search. However, I can still can't browse my music through a frontend - only search. I noticed this issue just now, indicating that this is strictly a search-based extension. Is this correct? |
Here are the commits, which most likely fixed the two issues: e6a6949#diff-8f64437659afb135e03ba97e5cc56624R29 Not sure whether browsing should be supported or not |
I got same warning message;
with Mopidy1.1.1, mopidy-subsonic 1.0.0, subsonic 5.2.1. |
Same issue with the exact same setup. |
Same issue here, all installed from pip. Mopidy - Music server with MPD and Spotify support In this mopidy-subsonic version, the below patches are already applied. I traced the error if it helps.. |
From https://github.com/rattboi/mopidy-subsonic/blob/master/mopidy_subsonic/client.py#L252-L255: if 'year' in data:
track_kwargs['date'] = data['year']
else:
track_kwargs['date'] = 'none' Should be changed to: if 'year' in data:
track_kwargs['date'] = str(data['year'])
else:
track_kwargs['date'] = None |
Thanks jodal, it did it ! |
Hi! |
@jolny if it's not related to this bug, you should probably report a new one at https://github.com/rattboi/mopidy-subsonic/issues/new |
@remche -- I'm working on getting browse rocking for ncmpcpp in my fork right now. as of evanscottgray@2267bcf it is working but it needs a lot of cleanup before it is ready to PR. after that the playlist stuff is next for me. |
appears while browsing the library. Also music doesn't show up.
Using Subsonic 5.2.1-KANG
The text was updated successfully, but these errors were encountered: