fix cannot read privacy policy redirect to onboarding (#6636)

This commit is contained in:
narender2031 2020-03-16 18:23:32 +05:30 committed by GitHub
parent efb0a7af56
commit c913197fac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,8 @@ HTMLDocument.prototype.ready = new Promise(resolve => {
function redirectableLocation() {
return (
window.location.pathname !== '/onboarding' &&
window.location.pathname !== '/signout_confirm'
window.location.pathname !== '/signout_confirm' &&
window.location.pathname !== '/privacy'
);
}