aboutsummaryrefslogtreecommitdiffstats
path: root/src/electron
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-09-06 12:29:39 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-09-06 12:29:39 +0200
commit232f7e034659195c7757efd4cb1f4cdaf32606d5 (patch)
tree1b84295f20d21c0b2008ea72e847fe8998f0aebe /src/electron
parentAdd server change info (diff)
downloadferdium-app-232f7e034659195c7757efd4cb1f4cdaf32606d5.tar.gz
ferdium-app-232f7e034659195c7757efd4cb1f4cdaf32606d5.tar.zst
ferdium-app-232f7e034659195c7757efd4cb1f4cdaf32606d5.zip
Fix deeplinking issues
Diffstat (limited to 'src/electron')
-rw-r--r--src/electron/deepLinking.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/electron/deepLinking.js b/src/electron/deepLinking.js
index ef23fd3c5..70e5cfb6f 100644
--- a/src/electron/deepLinking.js
+++ b/src/electron/deepLinking.js
@@ -1,5 +1,5 @@
1export default function handleDeepLink(window, rawUrl) { 1export default function handleDeepLink(window, rawUrl) {
2 const url = rawUrl.replace('franz://', ''); 2 const url = rawUrl.replace('ferdi://', '');
3 3
4 if (!url) return; 4 if (!url) return;
5 5