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

View File

@@ -2317,7 +2317,7 @@ List<String>? 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;
}
}