You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently after a login, the user is redirected to the original page from which the login procedure was initiated. To this end the DOM document.referrer property is used to access the URL of the previous page.
A change in the Mozilla HTTP referrers policy to a privacy related stricter policy changed the default handling of the document.referrer property.
With the current GCA-Web code base this now by default leads to an empty document.referrer property when using an up to date version of e.g. Firefox. Chrome based browsers still support the redirect method without an issue but this might change in the future.
Currently after a login, the user is redirected to the original page from which the login procedure was initiated. To this end the DOM
document.referrer
property is used to access the URL of the previous page.A change in the Mozilla HTTP referrers policy to a privacy related stricter policy changed the default handling of the
document.referrer
property.With the current GCA-Web code base this now by default leads to an empty
document.referrer
property when using an up to date version of e.g. Firefox. Chrome based browsers still support the redirect method without an issue but this might change in the future.Check the Mozilla Referer and RefererPolicy pages for implementation details.
The text was updated successfully, but these errors were encountered: