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:
authorShishkevich D. <135337715+shishkevichd@users.noreply.github.com>2025-03-09 09:38:45 +0300
committerShishkevich D. <135337715+shishkevichd@users.noreply.github.com>2025-03-09 09:38:45 +0300
commitc35179d9240647884f592622d036bfad228f7bda (patch)
tree86b2851254dde6a7d12193d3d262c7e21a775ef4 /web/assets
parentcedc7f0fb8b30009a9526053be3dc3857af8bdcb (diff)
chore: remove unused variable
Diffstat (limited to 'web/assets')
-rw-r--r--web/assets/js/util/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/assets/js/util/index.js b/web/assets/js/util/index.js
index c3bf68e7..75cf915d 100644
--- a/web/assets/js/util/index.js
+++ b/web/assets/js/util/index.js
@@ -106,7 +106,7 @@ class RandomUtil {
static randomShortIds() {
const lengths = [2, 4, 6, 8, 10, 12, 14, 16].sort(() => Math.random() - 0.5);
- const seq = this.getSeq();
+
return lengths.map(len => this.randomSeq(len)).join(',');
}