amélioration de la webapp

This commit is contained in:
2025-10-19 13:42:29 +02:00
parent 756ae7f82c
commit 208fe8be76
179 changed files with 2426 additions and 1685 deletions

View File

@@ -69,10 +69,7 @@ impl QobuzApi {
pub async fn login(&mut self, username: &str, password: &str) -> Result<AuthInfo> {
info!("Attempting to login to Qobuz as {}", username);
let params = [
("username", username),
("password", password),
];
let params = [("username", username), ("password", password)];
let response: LoginResponse = self.post("/user/login", &params).await?;