From e63ecc10aa426e3aba416fd05a3f568d719a79a3 Mon Sep 17 00:00:00 2001 From: Max Audron Date: Sat, 21 Feb 2026 17:25:52 +0100 Subject: handshare and signalproxy/rpccall error handling --- src/message/signalproxy/initrequest.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/message/signalproxy/initrequest.rs') diff --git a/src/message/signalproxy/initrequest.rs b/src/message/signalproxy/initrequest.rs index 592a703..ad6a3f2 100644 --- a/src/message/signalproxy/initrequest.rs +++ b/src/message/signalproxy/initrequest.rs @@ -29,9 +29,11 @@ impl Deserialize for InitRequest { Ok(( size, Self { - class_name: res.remove(0).try_into().unwrap(), - object_name: res.remove(0).try_into().unwrap(), + class_name: res.remove(0).try_into()?, + object_name: res.remove(0).try_into()?, }, )) } } + + -- cgit v1.2.3 bquassel-feature/getbacklog'>libquassel-feature/getbacklog Native rust implementation of the Quassel protocol and library functionsMax Audron <me@audron.dev>
aboutsummaryrefslogtreecommitdiff
path: root/src/primitive (unfollow)
Commit message (Expand)AuthorLines
2021-01-04random stuffMax Audron-2/+9
2021-01-04add more signalproxy objectsMax Audron-40/+120
2021-01-04add message parsing feature flagsMax Audron-43/+96
2021-01-04fix parsing of datetime when value is -1Max Audron-1/+9
2021-01-02update dependenciesMax Audron-267/+27
2021-01-02rework handshakemessage parsingMax Audron-141/+278
2020-10-16updateMax Audron-1553/+294
2020-10-16update paperworkMax Audron-487/+391