From 87a45e88dc3a8e093176f394be694a7b45bd6031 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 20 Jul 2024 11:45:12 +0000 Subject: [PATCH] fix: correct copy-pasted DCACCOUNT parsing errors message Apparently error message was copy-pasted from DCWEBRTC handling code. --- src/qr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qr.rs b/src/qr.rs index 5a3fe60fe..cd82e2f2a 100644 --- a/src/qr.rs +++ b/src/qr.rs @@ -510,7 +510,7 @@ fn decode_account(qr: &str) -> Result { Ok(Qr::Account { domain: url .host_str() - .context("can't extract WebRTC instance domain")? + .context("can't extract account setup domain")? .to_string(), }) } else {