Skip to content

Commit d3d7b09

Browse files
authored
fix: mobile never connecting with password from url scheme (rustdesk#11797)
1 parent 6144a1c commit d3d7b09

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

flutter/lib/common.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2317,7 +2317,7 @@ List<String>? urlLinkToCmdArgs(Uri uri) {
23172317
if (isMobile) {
23182318
if (id != null) {
23192319
final forceRelay = queryParameters["relay"] != null;
2320-
connect(Get.context!, id, forceRelay: forceRelay);
2320+
connect(Get.context!, id, forceRelay: forceRelay, password: queryParameters["password"]);
23212321
return null;
23222322
}
23232323
}

0 commit comments

Comments
 (0)