Don't do useless conversions

This commit is contained in:
Thomas Eizinger 2021-06-24 19:34:33 +10:00
parent dffe4351a8
commit 856fe6a21e
No known key found for this signature in database
GPG Key ID: 651AC83A6C6C8B96

View File

@ -399,7 +399,7 @@ where
) )
.await .await
.map_err(|e| Error::Io(e))?; .map_err(|e| Error::Io(e))?;
return Err(e.into()); return Err(e);
} }
}; };