Fix more clippy warnings in components/shared/net (#31548)

* Fix clippy warnings in components/shared

* Fix build error

* Fixes in order to solve some merge issues

---------

Co-authored-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
Mucha Naibei 2024-03-10 20:47:38 +03:00 committed by GitHub
parent 67b277c992
commit 0bc685ed97
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 11 deletions

View file

@ -820,10 +820,10 @@ async fn scheme_fetch(
let (id, origin) = match parse_blob_url(&url) {
Ok((id, origin)) => (id, origin),
Err(()) => {
return Response::network_error(NetworkError::Internal(
"Invalid blob url".into(),
));
Err(error) => {
return Response::network_error(NetworkError::Internal(format!(
"Invalid blob URL ({error})"
)));
},
};