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()