Skip to content

Commit

Permalink
fix(hy2): insecure parameter not work
Browse files Browse the repository at this point in the history
Signed-off-by: Eikano <[email protected]>
  • Loading branch information
wanlce committed Sep 28, 2024
1 parent 604e981 commit 057af3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ConfigureNodeFormModal/Hysteria2Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const Hysteria2Form = ({ onLinkGeneration }: { onLinkGeneration: (link: s
obfs: values.obfs,
obfsPassword: values.obfsPassword,
sni: values.sni,
insecure: values.allowInsecure,
insecure: values.allowInsecure ? 1 : 0,
pinSHA256: values.pinSHA256,
}

Expand Down

0 comments on commit 057af3e

Please sign in to comment.