From fa6745bb6031657af2f9dfa8331ea86d73d098c6 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Thu, 8 Sep 2022 16:14:30 +0200 Subject: [PATCH] feat(qrcode): `DecodingError::Identifier` is no longer useful. --- crates/matrix-sdk-qrcode/src/error.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/matrix-sdk-qrcode/src/error.rs b/crates/matrix-sdk-qrcode/src/error.rs index 92f1159a9..740e2e397 100644 --- a/crates/matrix-sdk-qrcode/src/error.rs +++ b/crates/matrix-sdk-qrcode/src/error.rs @@ -30,9 +30,6 @@ pub enum DecodingError { /// The QR code data is using an unsupported or invalid verification mode. #[error("the QR code contains an invalid verification mode: {0}")] Mode(u8), - /// The flow id is not a valid event ID. - #[error(transparent)] - Identifier(#[from] ruma_common::IdParseError), #[error(transparent)] /// The QR code data does not contain all the necessary fields. Read(#[from] std::io::Error),