Skip to content

Commit

Permalink
Fix more
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 27, 2024
1 parent 90a6ab0 commit ef35b46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/next-core/src/next_font/google/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ async fn fetch_from_google_fonts(
.await?;

Ok(match &*result {
Ok(r) => Some(r.await?.body),
Ok(r) => Some(*r.await?.body),
Err(err) => {
// Inform the user of the failure to retreive the stylesheet / font, but don't
// propagate this error. We don't want e.g. offline connections to prevent page
Expand Down

0 comments on commit ef35b46

Please sign in to comment.