handle scan of plus url

This commit is contained in:
Paul Miller
2023-11-20 16:10:18 -06:00
committed by Tony Giorgio
parent 6146e7e555
commit adeb695722

View File

@@ -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
}