From f0165c1ad801c594b64b9d2178cf8b9cfe053a49 Mon Sep 17 00:00:00 2001 From: mhsanaei Date: Fri, 30 Aug 2024 09:28:44 +0200 Subject: v2.3.14 --- web/html/xui/settings.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'web/html/xui/settings.html') diff --git a/web/html/xui/settings.html b/web/html/xui/settings.html index beab4df1..a12dfab9 100644 --- a/web/html/xui/settings.html +++ b/web/html/xui/settings.html @@ -326,8 +326,8 @@ - - + + @@ -436,8 +436,8 @@ settings: { domainStrategy: "AsIs", noise: { - packets: "rand:5-10", - delay: "5-10", + packet: "rand:5-10", + delay: "10-20", } }, }, @@ -646,12 +646,12 @@ this.allSetting.subJsonNoise = v ? JSON.stringify(this.defaultNoise) : ""; } }, - noisePackets: { - get: function () { return this.noise ? JSON.parse(this.allSetting.subJsonNoise).settings.noise.packets : ""; }, + noisePacket: { + get: function () { return this.noise ? JSON.parse(this.allSetting.subJsonNoise).settings.noise.packet : ""; }, set: function (v) { if (v != "") { newNoise = JSON.parse(this.allSetting.subJsonNoise); - newNoise.settings.noise.packets = v; + newNoise.settings.noise.packet = v; this.allSetting.subJsonNoise = JSON.stringify(newNoise); } } -- cgit v1.2.3