From 59e68b0032c8e29e9b4826ab713c65250248668b Mon Sep 17 00:00:00 2001 From: Esdras Renan Date: Thu, 27 Nov 2025 08:20:30 -0300 Subject: [PATCH] Use RustDesk key param in launch URI --- src/components/admin/devices/admin-devices-overview.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/admin/devices/admin-devices-overview.tsx b/src/components/admin/devices/admin-devices-overview.tsx index 634f0e2..ccd2a26 100644 --- a/src/components/admin/devices/admin-devices-overview.tsx +++ b/src/components/admin/devices/admin-devices-overview.tsx @@ -492,6 +492,8 @@ export function buildRustDeskUri(entry: DeviceRemoteAccessEntry) { if (!identifier) return null const params = new URLSearchParams() if (entry.password) { + // RustDesk aceita "key=" como parĂ¢metro oficial; mantemos "password" por compatibilidade. + params.set("key", entry.password) params.set("password", entry.password) } const query = params.toString()