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:
authorHapp-dev <mangustyura15@gmail.com>2026-03-04 14:29:46 +0300
committerGitHub <noreply@github.com>2026-03-04 14:29:46 +0300
commitccd223aeea82e246e4575bf49fa6419e65be3901 (patch)
tree5fbc1b9279ab1fc1366b9e8be869394ef0ee6c47
parent96b8fe472ce2600906237ebc120e9c99983bc4d5 (diff)
Fix DeepLink for Happ, remove encoding URL (#3863)
Co-authored-by: y.sivushkin <y.sivushkin@corp.101xp.com>
-rw-r--r--web/assets/js/subscription.js2
-rw-r--r--web/html/settings/panel/subscription/subpage.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/web/assets/js/subscription.js b/web/assets/js/subscription.js
index b79d361c..228dcfa0 100644
--- a/web/assets/js/subscription.js
+++ b/web/assets/js/subscription.js
@@ -144,7 +144,7 @@
return this.app.subUrl;
},
happUrl() {
- return `happ://add/${encodeURIComponent(this.app.subUrl)}`;
+ return `happ://add/${this.app.subUrl}`;
}
},
methods: {
diff --git a/web/html/settings/panel/subscription/subpage.html b/web/html/settings/panel/subscription/subpage.html
index c59f68ee..794c67c3 100644
--- a/web/html/settings/panel/subscription/subpage.html
+++ b/web/html/settings/panel/subscription/subpage.html
@@ -206,7 +206,7 @@
<a-menu-item key="android-npvtunnel" @click="copy(app.subUrl)">NPV
Tunnel</a-menu-item>
<a-menu-item key="android-happ"
- @click="open('happ://add/' + encodeURIComponent(app.subUrl))">Happ</a-menu-item>
+ @click="open('happ://add/' + app.subUrl)">Happ</a-menu-item>
</a-menu>
</a-dropdown>
</a-col>