aboutsummaryrefslogtreecommitdiffstats
path: root/src/electron/deepLinking.ts
blob: 70e5cfb6ff8e7418bdb717f1f9f2edc534c2d494 (plain) (blame)
1
2
3
4
5
6
7
export default function handleDeepLink(window, rawUrl) {
  const url = rawUrl.replace('ferdi://', '');

  if (!url) return;

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