diff --git a/config/version b/config/version index ff2fd4fb..9eadd6ba 100644 --- a/config/version +++ b/config/version @@ -1 +1 @@ -1.8.5 \ No newline at end of file +1.8.6 \ No newline at end of file diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js index 01bd539f..96a4c549 100644 --- a/web/assets/js/model/outbound.js +++ b/web/assets/js/model/outbound.js @@ -872,15 +872,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, ); } diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html index cb9eeeba..3cce3391 100644 --- a/web/html/xui/form/outbound.html +++ b/web/html/xui/form/outbound.html @@ -55,8 +55,8 @@