Browse Source

Fix clippy warning

pull/2786/head^2
Skiepp 3 years ago
parent
commit
4d57b25319
  1. 2
      src/api/identity.rs

2
src/api/identity.rs

@ -709,7 +709,7 @@ async fn authorize(domain_hint: String, state: String, conn: DbConn) -> ApiResul
if key == "state" {
return format!("{}={}", key, state);
}
format!("{}={}", key, value);
format!("{}={}", key, value)
});
let full_query = Vec::from_iter(new_pairs).join("&");
authorize_url.set_query(Some(full_query.as_str()));

Loading…
Cancel
Save