Fix clippy: Remove unneeded return statement
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
40d5277c1c
commit
6bdc0fea5a
|
@ -427,7 +427,7 @@ impl Mastodon {
|
|||
},
|
||||
Err(err) => {
|
||||
error!(path = as_debug!(path), error = as_debug!(err); "error reading file contents for multipart form");
|
||||
return Err(err.into());
|
||||
Err(err.into())
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue