aboutsummaryrefslogtreecommitdiffstats
path: root/src/electron
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-12-22 12:59:04 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-12-22 12:59:04 +0100
commita081fca92caee548efcf057a5f124395c55d54a9 (patch)
tree7437ed366d290fbff0321a1e061773b352bbc6b4 /src/electron
parentadd deebug output (diff)
downloadferdium-app-a081fca92caee548efcf057a5f124395c55d54a9.tar.gz
ferdium-app-a081fca92caee548efcf057a5f124395c55d54a9.tar.zst
ferdium-app-a081fca92caee548efcf057a5f124395c55d54a9.zip
remove debugging tests
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 });