aboutsummaryrefslogtreecommitdiffstats
path: root/src/electron
diff options
context:
space:
mode:
Diffstat (limited to 'src/electron')
-rw-r--r--src/electron/deepLinking.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/electron/deepLinking.js b/src/electron/deepLinking.js
index f35cb460a..ef23fd3c5 100644
--- a/src/electron/deepLinking.js
+++ b/src/electron/deepLinking.js
@@ -1,8 +1,6 @@
1export default function handleDeepLink(window, rawUrl) { 1export default function handleDeepLink(window, rawUrl) {
2 const url = rawUrl.replace('franz://', ''); 2 const url = rawUrl.replace('franz://', '');
3 3
4 console.log('handleDeepLink', url);
5
6 if (!url) return; 4 if (!url) return;
7 5
8 window.webContents.send('navigateFromDeepLink', { url }); 6 window.webContents.send('navigateFromDeepLink', { url });