mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
handle buffer errors
This commit is contained in:
parent
f8978adb2c
commit
ed4851068c
1 changed files with 3 additions and 5 deletions
|
|
@ -508,14 +508,12 @@ impl Page {
|
|||
let status = Status::Failure;
|
||||
let title = gformat!("Oops");
|
||||
let description = match reason {
|
||||
BodyError::InputStream => match message {
|
||||
BodyError::InputStreamRead => match message {
|
||||
Some(error) => gformat!("{error}"),
|
||||
None => gformat!("Undefined connection error")
|
||||
} ,
|
||||
BodyError::Overflow => gformat!("Buffer overflow"),
|
||||
BodyError::Buffer => todo!(),
|
||||
BodyError::Decode => todo!(),
|
||||
BodyError::Format => todo!(),
|
||||
BodyError::BufferOverflow => gformat!("Buffer overflow"),
|
||||
BodyError::Decode => gformat!("Buffer decode error"),
|
||||
};
|
||||
|
||||
// Update widget
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue