mirror of
https://github.com/Termix-SSH/Termix.git
synced 2026-07-16 05:13:36 +00:00
fix: default ignore-cert to true for rdp connections
This commit is contained in:
@@ -205,7 +205,8 @@ router.post(
|
||||
port: port || 3389,
|
||||
domain,
|
||||
security: (host.security as string) || undefined,
|
||||
"ignore-cert": (host.ignoreCert as boolean) || false,
|
||||
"ignore-cert":
|
||||
host.ignoreCert !== undefined ? !!host.ignoreCert : true,
|
||||
...guacConfig,
|
||||
});
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user