diff --git a/src/paste.rs b/src/paste.rs index 962506bb..b602fb21 100644 --- a/src/paste.rs +++ b/src/paste.rs @@ -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.