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:
Diffstat (limited to 'web/html/modals/inbound_modal.html')
-rw-r--r--web/html/modals/inbound_modal.html12
1 files changed, 11 insertions, 1 deletions
diff --git a/web/html/modals/inbound_modal.html b/web/html/modals/inbound_modal.html
index 8be213a8..f11df2e2 100644
--- a/web/html/modals/inbound_modal.html
+++ b/web/html/modals/inbound_modal.html
@@ -141,7 +141,17 @@
}
inModal.inbound.stream.reality.privateKey = msg.obj.privateKey;
inModal.inbound.stream.reality.settings.publicKey = msg.obj.publicKey;
- }
+ },
+ async getNewmldsa65() {
+ inModal.loading(true);
+ const msg = await HttpUtil.post('/server/getNewmldsa65');
+ inModal.loading(false);
+ if (!msg.success) {
+ return;
+ }
+ inModal.inbound.stream.reality.mldsa65Seed = msg.obj.seed;
+ inModal.inbound.stream.reality.settings.mldsa65Verify = msg.obj.verify;
+ },
},
});