diff options
Diffstat (limited to 'components/net/blob_loader.rs')
-rw-r--r-- | components/net/blob_loader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/net/blob_loader.rs b/components/net/blob_loader.rs index 3594dccc265..1fe05cc1c20 100644 --- a/components/net/blob_loader.rs +++ b/components/net/blob_loader.rs @@ -22,7 +22,7 @@ pub fn load_blob_sync filemanager: FileManager) -> Result<(Headers, Vec<u8>), NetworkError> { let (id, origin) = match parse_blob_url(&url) { - Ok((id, origin, _fragment)) => (id, origin), + Ok((id, origin)) => (id, origin), Err(()) => { let e = format!("Invalid blob URL format {:?}", url); return Err(NetworkError::Internal(e)); |