diff --git a/src/hooks/use-clash.ts b/src/hooks/use-clash.ts index 483f197d..85b3faed 100644 --- a/src/hooks/use-clash.ts +++ b/src/hooks/use-clash.ts @@ -70,8 +70,8 @@ export const useClashInfo = () => { if (patch["redir-port"]) { const port = patch["redir-port"]; - if (port < 1111) { - throw new Error("The port should not < 1111"); + if (port < 1000) { + throw new Error("The port should not < 1000"); } if (port > 65536) { throw new Error("The port should not > 65536"); @@ -80,8 +80,8 @@ export const useClashInfo = () => { if (patch["tproxy-port"]) { const port = patch["tproxy-port"]; - if (port < 1111) { - throw new Error("The port should not < 1111"); + if (port < 1000) { + throw new Error("The port should not < 1000"); } if (port > 65536) { throw new Error("The port should not > 65536"); @@ -90,8 +90,8 @@ export const useClashInfo = () => { if (patch["mixed-port"]) { const port = patch["mixed-port"]; - if (port < 1111) { - throw new Error("The port should not < 1111"); + if (port < 1000) { + throw new Error("The port should not < 1000"); } if (port > 65536) { throw new Error("The port should not > 65536"); @@ -100,8 +100,8 @@ export const useClashInfo = () => { if (patch["socks-port"]) { const port = patch["socks-port"]; - if (port < 1111) { - throw new Error("The port should not < 1111"); + if (port < 1000) { + throw new Error("The port should not < 1000"); } if (port > 65536) { throw new Error("The port should not > 65536"); @@ -110,8 +110,8 @@ export const useClashInfo = () => { if (patch["port"]) { const port = patch["port"]; - if (port < 1111) { - throw new Error("The port should not < 1111"); + if (port < 1000) { + throw new Error("The port should not < 1000"); } if (port > 65536) { throw new Error("The port should not > 65536");