Skip to content

Commit

Permalink
Fix removing completed items from queue
Browse files Browse the repository at this point in the history
  • Loading branch information
ta264 committed Mar 23, 2022
1 parent 501433b commit 9a45b1b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void RemoveFromQueue(string downloadId, DeemixSettings settings)
var request = BuildRequest(settings)
.Resource("/api/removeFromQueue")
.Post()
.AddFormParameter("uuid", downloadId);
.AddQueryParam("uuid", downloadId);

ProcessRequest(request);
}
Expand Down

0 comments on commit 9a45b1b

Please sign in to comment.