aboutsummaryrefslogtreecommitdiffstats
path: root/src/electron/deepLinking.js
blob: 819fdd0952eeb9ab0f66dd91a89262d765eb0362 (plain) (blame)
1
2
3
4
5
export default function handleDeepLink(window, url) {
  console.log(url);

  window.webContents.send('navigateFromDeepLink', { url });
}