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 <mc.sanaei@gmail.com>2023-02-16 18:58:20 +0300
committerMHSanaei <mc.sanaei@gmail.com>2023-02-16 18:58:20 +0300
commitfe9844b51b04bb924bb0e5444b493668c9df92a2 (patch)
treef32156eff095434b2e256630d4b2ddf8ea5715d2 /web/html/xui/inbound_modal.html
parent30611383de06c9a97e3cbb8fcf1bbe531846f6b2 (diff)
update pack
Diffstat (limited to 'web/html/xui/inbound_modal.html')
-rw-r--r--web/html/xui/inbound_modal.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/xui/inbound_modal.html b/web/html/xui/inbound_modal.html
index 0c2be412..4fec0ded 100644
--- a/web/html/xui/inbound_modal.html
+++ b/web/html/xui/inbound_modal.html
@@ -165,11 +165,11 @@
getNewEmail(client) {
var chars = 'abcdefghijklmnopqrstuvwxyz1234567890';
var string = '';
- var len = 6 + Math.floor(Math.random() * 5)
+ var len = 7 + Math.floor(Math.random() * 5)
for(var ii=0; ii<len; ii++){
string += chars[Math.floor(Math.random() * chars.length)];
}
- client.email = string + "@gmail.com"
+ client.email = string
}
},
});