mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-10 06:54:12 +00:00
Fixing clippy.
This commit is contained in:
parent
571c71392e
commit
815cf60f45
1 changed files with 1 additions and 1 deletions
|
@ -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={}",
|
||||
|
|
Loading…
Reference in a new issue