mirror of
https://github.com/clementine-player/Clementine
synced 2025-01-28 18:19:42 +01:00
Fix Subsonic endpoint
According to the documentation, the endpoint is `getAlbumList`, not `GetAlbumList`. This typo makes the complete feature not working at all. Source: http://www.subsonic.org/pages/api.jsp#getAlbumList
This commit is contained in:
parent
1a2f6e2fe8
commit
650f06f7ad
@ -93,7 +93,7 @@ PlaylistItemList SubsonicDynamicPlaylist::GenerateMore(int count) {
|
||||
}
|
||||
BOOST_SCOPE_EXIT_END
|
||||
|
||||
QUrl url = service->BuildRequestUrl("GetAlbumList");
|
||||
QUrl url = service->BuildRequestUrl("getAlbumList");
|
||||
QNetworkAccessManager network;
|
||||
|
||||
if (count > kMaxCount) count = kMaxCount;
|
||||
|
Loading…
x
Reference in New Issue
Block a user