I want to call a deep link with some query parameters (e.g. https://domain.com/postbox?somevalue=xyz). After login you will change the history so that I loose my query params. I figured out, that this will happen in adal.service.ts => handleWindowCallback() => LN 116: window.history.replaceState('', '/', window.location.pathname)
Could you please add window.location.search?
Hi,
I want to call a deep link with some query parameters (e.g. https://domain.com/postbox?somevalue=xyz). After login you will change the history so that I loose my query params. I figured out, that this will happen in adal.service.ts => handleWindowCallback() => LN 116:
window.history.replaceState('', '/', window.location.pathname)
Could you please addwindow.location.search
?Thanks Christian