fix: Desktop redirect on Safari

This commit is contained in:
Tom Moor
2022-11-30 23:00:40 -05:00
parent 63cef45284
commit 648424fe2c

View File

@@ -14,7 +14,10 @@ const DesktopRedirect = () => {
React.useEffect(() => {
if (token) {
window.location.href = `outline://${window.location.host}/auth/redirect?token=${token}`;
window.open(
`outline://${window.location.host}/auth/redirect?token=${token}`,
"_self"
);
// Clean the url so it's not possible to hit reload, re-using the transfer token will not work.
window.location.search = "";