Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-26 05:50:29 +01:00
cargo fmt
changes
The PR build seems to fail without this...
Dieser Commit ist enthalten in:
Ursprung
c42bcae224
Commit
38104ba7cf
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
|
@ -308,7 +308,8 @@ fn invite_user(data: Json<InviteData>, _token: AdminToken, conn: DbConn) -> Json
|
||||||
}
|
}
|
||||||
|
|
||||||
user.save(&conn)
|
user.save(&conn)
|
||||||
})().map_err(|e| e.with_code(Status::InternalServerError.code))?;
|
})()
|
||||||
|
.map_err(|e| e.with_code(Status::InternalServerError.code))?;
|
||||||
|
|
||||||
Ok(Json(user.to_json(&conn)))
|
Ok(Json(user.to_json(&conn)))
|
||||||
}
|
}
|
||||||
|
|
Laden …
In neuem Issue referenzieren