aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-12-05 17:46:13 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-12-05 17:46:13 +0100
commitd081f252b89b56b758782bd84713f90f390cc4a9 (patch)
tree362d10ce858063468aace1416817437a76480b78 /src/index.js
parentWIP: add deep linking (diff)
downloadferdium-app-d081f252b89b56b758782bd84713f90f390cc4a9.tar.gz
ferdium-app-d081f252b89b56b758782bd84713f90f390cc4a9.tar.zst
ferdium-app-d081f252b89b56b758782bd84713f90f390cc4a9.zip
first working implementation of deep linking
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js
index 4b6241f13..ef36a0dc9 100644
--- a/src/index.js
+++ b/src/index.js
@@ -147,6 +147,8 @@ const createWindow = () => {
147 147
148 mainWindow.on('show', () => { 148 mainWindow.on('show', () => {
149 mainWindow.setSkipTaskbar(false); 149 mainWindow.setSkipTaskbar(false);
150
151 handleDeepLink(mainWindow, 'franz://settings/services/add/msteams');
150 }); 152 });
151 153
152 app.mainWindow = mainWindow; 154 app.mainWindow = mainWindow;