style: bubble up error

This commit is contained in:
Matthew Esposito 2025-02-06 18:44:42 -05:00
parent 593fd7d547
commit 1ed41958be

View file

@ -281,7 +281,7 @@ pub async fn encoded_restore(req: Request<Body>) -> Result<Response<Body>, Strin
let mut prefs: Preferences = bincode::deserialize(&out).map_err(|e| format!("Failed to deserialize bytes into Preferences struct: {}", e))?;
prefs.available_themes = vec![];
let url = format!("/settings/restore/?{}", prefs.to_urlencoded().unwrap());
let url = format!("/settings/restore/?{}", prefs.to_urlencoded()?);
Ok(redirect(&url))
}