From dcf4d4ea44dd6050fb302c3774dccc18fc41819c Mon Sep 17 00:00:00 2001 From: phoenix Date: Tue, 15 Jul 2025 15:34:48 -0400 Subject: [PATCH] Changing url --- src/the_rest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/the_rest.rs b/src/the_rest.rs index 64c1c1d..7bde6d2 100644 --- a/src/the_rest.rs +++ b/src/the_rest.rs @@ -81,7 +81,7 @@ pub mod wipe_data { pub mod song_queue { pub async fn wipe_data(base_url: &String, song_queue_id: &uuid::Uuid) -> Result { let client = reqwest::Client::builder().build()?; - let url = format!("{base_url}/api/v2/coverart"); + let url = format!("{base_url}/api/v2/song/queue/data/wipe"); let payload = serde_json::json!({ "song_queue_id": song_queue_id });