commit 3da44a8d30e76f48b84f5b888e0b33427037037c
parent 34ea10475d316ccb2ca4cd2cac67b61c4cdfb62a
Author: Daniel GarcĂa <dani-garcia@users.noreply.github.com>
Date: Tue, 27 Apr 2021 23:39:36 +0200
Fix formatting
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/api/admin.rs b/src/api/admin.rs
@@ -518,8 +518,7 @@ fn diagnostics(_token: AdminToken, ip_header: IpHeader, conn: DbConn) -> ApiResu
// TODO: Maybe we need to cache this using a LazyStatic or something. Github only allows 60 requests per hour, and we use 3 here already.
let (latest_release, latest_commit, latest_web_build) = if has_http_access {
(
- match get_github_api::<GitRelease>("https://api.github.com/repos/dani-garcia/vaultwarden/releases/latest")
- {
+ match get_github_api::<GitRelease>("https://api.github.com/repos/dani-garcia/vaultwarden/releases/latest") {
Ok(r) => r.tag_name,
_ => "-".to_string(),
},