Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormhsanaei <ho3ein.sanaei@gmail.com>2024-08-30 10:28:44 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2024-08-30 11:28:01 +0300
commitf0165c1ad801c594b64b9d2178cf8b9cfe053a49 (patch)
treecb281df8a2ab609e953c70c62b82ac776dbf9d26 /web/assets
parent898f80cb30ae8de2aac9992fff7e8f7a53c09dd7 (diff)
v2.3.14v2.3.14
Diffstat (limited to 'web/assets')
-rw-r--r--web/assets/js/model/outbound.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js
index 59da542a..5c019a3c 100644
--- a/web/assets/js/model/outbound.js
+++ b/web/assets/js/model/outbound.js
@@ -909,15 +909,15 @@ Outbound.FreedomSettings.Fragment = class extends CommonClass {
}
};
Outbound.FreedomSettings.Noise = class extends CommonClass {
- constructor(packets = '', delay = '') {
+ constructor(packet = '', delay = '') {
super();
- this.packets = packets;
+ this.packet = packet;
this.delay = delay;
}
static fromJson(json = {}) {
return new Outbound.FreedomSettings.Noise(
- json.packets,
+ json.packet,
json.delay,
);
}