Browse Source

handle buffer errors

master
yggverse 1 month ago
parent
commit
ed4851068c
  1. 8
      src/app/browser/window/tab/item/page.rs

8
src/app/browser/window/tab/item/page.rs

@ -508,14 +508,12 @@ impl Page {
let status = Status::Failure; let status = Status::Failure;
let title = gformat!("Oops"); let title = gformat!("Oops");
let description = match reason { let description = match reason {
BodyError::InputStream => match message { BodyError::InputStreamRead => match message {
Some(error) => gformat!("{error}"), Some(error) => gformat!("{error}"),
None => gformat!("Undefined connection error") None => gformat!("Undefined connection error")
} , } ,
BodyError::Overflow => gformat!("Buffer overflow"), BodyError::BufferOverflow => gformat!("Buffer overflow"),
BodyError::Buffer => todo!(), BodyError::Decode => gformat!("Buffer decode error"),
BodyError::Decode => todo!(),
BodyError::Format => todo!(),
}; };
// Update widget // Update widget

Loading…
Cancel
Save