We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ffd297 commit c8dbdceCopy full SHA for c8dbdce
1 file changed
src/authn/SolidAuthnLogic.ts
@@ -47,10 +47,12 @@ export class SolidAuthnLogic implements AuthnLogic {
47
/**
48
* Handle a successful authentication redirect
49
*/
50
+ const redirectUrl = new URL(window.location.href)
51
+ redirectUrl.hash = ''
52
await this.session
53
.handleIncomingRedirect({
54
restorePreviousSession: true,
- url: window.location.href
55
+ url: redirectUrl.href
56
})
57
58
// Check to see if a hash was stored in local storage
0 commit comments