From adeb6957228d463ed54031c9e00b0f91df8bdd67 Mon Sep 17 00:00:00 2001 From: Paul Miller Date: Mon, 20 Nov 2023 16:10:18 -0600 Subject: [PATCH] handle scan of plus url --- src/state/megaStore.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/state/megaStore.tsx b/src/state/megaStore.tsx index 39a0731..c63cc18 100644 --- a/src/state/megaStore.tsx +++ b/src/state/megaStore.tsx @@ -332,6 +332,11 @@ export const Provider: ParentComponent = (props) => { navigate(url.pathname + url.search); return; } + + if (url && url.pathname.startsWith("/settings/plus")) { + navigate(url.pathname + url.search); + return; + } } catch (e) { // If it's not a URL, we'll just continue with normal parsing }