From d3d7b09fe706df76449a28457a7d399e317e81cc Mon Sep 17 00:00:00 2001 From: Lars <890725+larssn@users.noreply.github.com> Date: Tue, 20 May 2025 10:35:36 +0200 Subject: [PATCH] fix: mobile never connecting with password from url scheme (#11797) --- flutter/lib/common.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter/lib/common.dart b/flutter/lib/common.dart index c2641c929..ccb4f7fb0 100644 --- a/flutter/lib/common.dart +++ b/flutter/lib/common.dart @@ -2317,7 +2317,7 @@ List? urlLinkToCmdArgs(Uri uri) { if (isMobile) { if (id != null) { final forceRelay = queryParameters["relay"] != null; - connect(Get.context!, id, forceRelay: forceRelay); + connect(Get.context!, id, forceRelay: forceRelay, password: queryParameters["password"]); return null; } }