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 }