From 2b5820a56a5069e07eabb29ff18aa3574d9c2824 Mon Sep 17 00:00:00 2001 From: Yonghui Zhang Date: Mon, 24 Dec 2018 23:36:52 +0800 Subject: use new configs PATCH API --- src/components/Config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/components/Config.js') diff --git a/src/components/Config.js b/src/components/Config.js index e1a7af3..6656ad7 100644 --- a/src/components/Config.js +++ b/src/components/Config.js @@ -99,7 +99,7 @@ function Config({ configs }) { updateConfigs({ [name]: value }); break; case 'redir-port': - case 'socket-port': + case 'socks-port': case 'port': if (target.value !== '') { const num = parseInt(target.value, 10); @@ -117,7 +117,7 @@ function Config({ configs }) { const { name, value } = target; switch (name) { case 'port': - case 'socket-port': + case 'socks-port': case 'redir-port': { const num = parseInt(value, 10); if (num < 0 || num > 65535) return; @@ -144,8 +144,8 @@ function Config({ configs }) {
SOCKS5 Proxy Port
-- cgit v1.3.1