mirror of
https://github.com/Termix-SSH/Termix.git
synced 2026-07-15 21:03:47 +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,
|
port: port || 3389,
|
||||||
domain,
|
domain,
|
||||||
security: (host.security as string) || undefined,
|
security: (host.security as string) || undefined,
|
||||||
"ignore-cert": (host.ignoreCert as boolean) || false,
|
"ignore-cert":
|
||||||
|
host.ignoreCert !== undefined ? !!host.ignoreCert : true,
|
||||||
...guacConfig,
|
...guacConfig,
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user