fix: lints and formatting

This commit is contained in:
Helmut K. C. Tessarek 2024-04-03 17:52:41 -04:00
parent dd7b93f443
commit a7a5977dab
No known key found for this signature in database
GPG Key ID: BE0985349D44DD00
1 changed files with 3 additions and 4 deletions

View File

@ -177,7 +177,8 @@ impl Paste {
.unwrap_or_default()
.to_string();
let file_path = util::glob_match_file(path.clone())
.await.map_err(|_| IoError::new(IoErrorKind::Other, String::from("path is not valid")))?;
.await
.map_err(|_| IoError::new(IoErrorKind::Other, String::from("path is not valid")))?;
if file_path.is_file() && file_path.exists() {
return Err(error::ErrorConflict("file already exists\n"));
}
@ -247,9 +248,7 @@ impl Paste {
.to_string());
}
}
Ok(self
.store_file(file_name, expiry_date, None, config)
.await?)
self.store_file(file_name, expiry_date, None, config).await
}
/// Writes an URL to a file in upload directory.