]> Untitled Git - lemmy.git/commitdiff
Fixing clippy.
authorDessalines <tyhou13@gmx.com>
Fri, 16 Oct 2020 14:09:37 +0000 (09:09 -0500)
committerDessalines <tyhou13@gmx.com>
Fri, 16 Oct 2020 14:09:37 +0000 (09:09 -0500)
src/routes/images.rs

index 4b5ed98119e7852cd339239aa5b0666959fe8428..98b13f9955759d5aa86cf762100f9f3406cbe68e 100644 (file)
@@ -74,7 +74,7 @@ async fn full_res(
     format!("{}/image/original/{}", Settings::get().pictrs_url, name,)
   } else {
     // Use jpg as a default when none is given
-    let format = params.format.unwrap_or("jpg".to_string());
+    let format = params.format.unwrap_or_else(|| "jpg".to_string());
 
     let mut url = format!(
       "{}/image/process.{}?src={}",