diff --git a/desktop/app/src/deeplink.tsx b/desktop/app/src/deeplink.tsx index 1494f9c32..b2d083b18 100644 --- a/desktop/app/src/deeplink.tsx +++ b/desktop/app/src/deeplink.tsx @@ -43,6 +43,10 @@ export async function handleDeeplink( if (uri.protocol !== 'flipper:') { throw unknownError(); } + if (uri.href === 'flipper://') { + // We support an empty protocol for just opening Flipper from anywhere. + return; + } if (uri.href.startsWith('flipper://open-plugin')) { return handleOpenPluginDeeplink(store, query, trackInteraction); }