diff --git a/src-tauri/src/plugins/cohdb/auth/mod.rs b/src-tauri/src/plugins/cohdb/auth/mod.rs index 0ea7235..3b2b35d 100644 --- a/src-tauri/src/plugins/cohdb/auth/mod.rs +++ b/src-tauri/src/plugins/cohdb/auth/mod.rs @@ -200,7 +200,7 @@ pub async fn upload( .text("replay[public]", "false") .part("replay[file]", Part::bytes(data).file_name(file_name)); let res = client - .post("http://localhost:3000/api/v1/replays/upload") + .post("https://cohdb.com/api/v1/replays/upload") .multipart(form) .send() .await