Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
link2xt committed May 9, 2024
1 parent ef53a3e commit 02df41a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ async fn notify_device(mut req: tide::Request<State>) -> tide::Result<tide::Resp
} => {
let client = req.state().fcm_client().clone();
let Ok(fcm_token) = req.state().fcm_token().await else {
return Ok(tide::Response::new(tide::StatusCode::InternalServerError))
return Ok(tide::Response::new(tide::StatusCode::InternalServerError));
};
let metrics = req.state().metrics();
notify_fcm(
Expand Down

0 comments on commit 02df41a

Please sign in to comment.