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-06-20 15:30:46 +0300
committerGitHub <noreply@github.com>2025-06-20 15:30:46 +0300
commit2e6faf69e62274a35611eb20b0e0a05251c4a8cd (patch)
tree4d4d66fe8901bdc20d9776bfa928c95ec32b8a1b /web/html/form/client.html
parentf88b7b07f008470fb46c280a3cbedf7a5c838126 (diff)
fix: generate correct keys for shadowsocks inbounds
Diffstat (limited to 'web/html/form/client.html')
-rw-r--r--web/html/form/client.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/form/client.html b/web/html/form/client.html
index c67f1470..846bbd13 100644
--- a/web/html/form/client.html
+++ b/web/html/form/client.html
@@ -22,7 +22,7 @@
<span>{{ i18n "reset" }}</span>
</template>
{{ i18n "password" }}
- <a-icon v-if="inbound.protocol === Protocols.SHADOWSOCKS"@click="client.password = RandomUtil.randomShadowsocksPassword()" type="sync"></a-icon>
+ <a-icon v-if="inbound.protocol === Protocols.SHADOWSOCKS" @click="client.password = RandomUtil.randomShadowsocksPassword(inbound.settings.method)" type="sync"></a-icon>
<a-icon v-if="inbound.protocol === Protocols.TROJAN" @click="client.password = RandomUtil.randomSeq(10)"type="sync"> </a-icon>
</a-tooltip>
</template>