Subsonic API: fixed regression on updatePlaylist

This commit is contained in:
emeric
2019-08-02 15:10:28 +02:00
parent 70b7841886
commit 9d4fdd9a00
+1 -1
View File
@@ -1767,7 +1767,7 @@ static std::map<std::string, RequestEntryPointInfo> requestEntryPoints
{"/rest/unstar.view", {handleUnstarRequest, false}},
{"/rest/updateShare.view", {handleNotImplementedRequest, false}},
{"/rest/updateUser.view", {handleUpdateUserRequest, true}},
{"/rest/updatePlayslist.view", {handleUpdatePlaylistRequest, false}},
{"/rest/updatePlaylist.view", {handleUpdatePlaylistRequest, false}},
};
using MediaRetrievalHandlerFunc = std::function<MediaRetrievalResult(RequestContext&, Wt::Http::ResponseContinuation*)>;