mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-07-01 12:32:09 +00:00
freedom - default value for timeout
I've seen many users make the mistake of not setting the timeout value in Xray, which causes errors. Then, they mistakenly assume that 3x-ui has a bug.
This commit is contained in:
parent
2e363445fc
commit
d23a7f81ef
1 changed files with 2 additions and 2 deletions
|
@ -851,7 +851,7 @@ Outbound.Settings = class extends CommonClass {
|
|||
Outbound.FreedomSettings = class extends CommonClass {
|
||||
constructor(
|
||||
domainStrategy = '',
|
||||
timeout = '',
|
||||
timeout = 10,
|
||||
redirect = '',
|
||||
fragment = {},
|
||||
noise = {}
|
||||
|
@ -901,7 +901,7 @@ Outbound.FreedomSettings.Fragment = class extends CommonClass {
|
|||
}
|
||||
};
|
||||
Outbound.FreedomSettings.Noise = class extends CommonClass {
|
||||
constructor(packet = '', delay = '') {
|
||||
constructor(packet = 'rand:100-200', delay = '10-20') {
|
||||
super();
|
||||
this.packet = packet;
|
||||
this.delay = delay;
|
||||
|
|
Loading…
Reference in a new issue