From 1fdc514c1f0f341223d494f60fa5da54ac666b0e Mon Sep 17 00:00:00 2001 From: Rish Date: Thu, 23 Apr 2020 20:46:14 +0530 Subject: [PATCH] Fixed token handling in url for magic-link closes https://github.com/TryGhost/members.js/issues/14 This adds handling of url update when signing-in with magic link by removing the token query param, which can cause accidental re-login on refresh. --- ghost/portal/src/index.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ghost/portal/src/index.js b/ghost/portal/src/index.js index e23982ce6b..9a48890b1f 100644 --- a/ghost/portal/src/index.js +++ b/ghost/portal/src/index.js @@ -9,8 +9,17 @@ function addRootDiv() { document.body.appendChild(elem); } +function handleTokenUrl() { + const url = new URL(window.location); + if (url.searchParams.get('token')) { + url.searchParams.delete('token'); + window.history.replaceState({}, document.title, url.href); + } +} + function init(data) { addRootDiv(); + handleTokenUrl(); ReactDOM.render(