1
0
Fork 0
forked from wry/wry

xcon: move wire core into workspace crate

This commit is contained in:
kossLAN 2026-05-29 11:02:40 -04:00
parent 61ec13def0
commit d8380b3dce
No known key found for this signature in database
11 changed files with 138 additions and 99 deletions

View file

@ -99,7 +99,7 @@ impl Incoming {
break 'handle_error;
};
let e = match ext {
Some(e) => XconError::ExtensionError(e, code),
Some(e) => XconError::ExtensionError(e.name(), code),
_ => XconError::CoreError(code),
};
if let Some(first) = reply_handlers.front()