fix: mobile never connecting with password from url scheme (#11797)

This commit is contained in:
Lars 2025-05-20 10:35:36 +02:00 committed by GitHub
parent 6144a1c97e
commit d3d7b09fe7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2317,7 +2317,7 @@ List<String>? urlLinkToCmdArgs(Uri uri) {
if (isMobile) { if (isMobile) {
if (id != null) { if (id != null) {
final forceRelay = queryParameters["relay"] != null; final forceRelay = queryParameters["relay"] != null;
connect(Get.context!, id, forceRelay: forceRelay); connect(Get.context!, id, forceRelay: forceRelay, password: queryParameters["password"]);
return null; return null;
} }
} }