mirror of
https://github.com/clementine-player/Clementine
synced 2025-01-30 11:04:57 +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
|
BOOST_SCOPE_EXIT_END
|
||||||
|
|
||||||
QUrl url = service->BuildRequestUrl("GetAlbumList");
|
QUrl url = service->BuildRequestUrl("getAlbumList");
|
||||||
QNetworkAccessManager network;
|
QNetworkAccessManager network;
|
||||||
|
|
||||||
if (count > kMaxCount) count = kMaxCount;
|
if (count > kMaxCount) count = kMaxCount;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user