Fix DeepLink for Happ, remove encoding URL

This commit is contained in:
y.sivushkin 2026-02-26 17:27:02 +03:00
parent 159b85f979
commit 7ed14b0ff6
2 changed files with 2 additions and 2 deletions

View file

@ -144,7 +144,7 @@
return this.app.subUrl;
},
happUrl() {
return `happ://add/${encodeURIComponent(this.app.subUrl)}`;
return `happ://add/${this.app.subUrl}`;
}
},
methods: {

View file

@ -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>