update queued song #28

Merged
phoenix merged 20 commits from update_queued_song into devel 2025-06-28 23:23:42 +00:00
Showing only changes of commit 60dd60ad47 - Show all commits

View File

@@ -16,9 +16,7 @@ pub async fn update_queued_song(
let url = format!("{}/api/v2/song/queue/{}", base_url, song_queue_id);
println!("Url: {:?}", url);
let request = client
.patch(url)
.multipart(form);
let request = client.patch(url).multipart(form);
let response = request.send().await?;