diff options
| author | Happ-dev <mangustyura15@gmail.com> | 2026-03-04 14:29:46 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-04 14:29:46 +0300 |
| commit | ccd223aeea82e246e4575bf49fa6419e65be3901 (patch) | |
| tree | 5fbc1b9279ab1fc1366b9e8be869394ef0ee6c47 /web/assets | |
| parent | 96b8fe472ce2600906237ebc120e9c99983bc4d5 (diff) | |
Fix DeepLink for Happ, remove encoding URL (#3863)
Co-authored-by: y.sivushkin <y.sivushkin@corp.101xp.com>
Diffstat (limited to 'web/assets')
| -rw-r--r-- | web/assets/js/subscription.js | 2 |
1 files changed, 1 insertions, 1 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: { |
