Skip to content

Commit 4c53ee0

Browse files
committed
Revert session param to query-only (not from fragment)
1 parent 571d605 commit 4c53ee0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

assets/js/hubsubscription.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class HubSubscription {
2828
if (encodedReturnUrl) {
2929
this._subscriptionData.returnUrl = decodeURIComponent(encodedReturnUrl);
3030
}
31-
this._subscriptionData.session = fragmentParams.get('session') ?? searchParams.get('session');
31+
this._subscriptionData.session = searchParams.get('session');
3232
if (this._subscriptionData.hubId && this._subscriptionData.hubId.length > 0 && this._subscriptionData.returnUrl && this._subscriptionData.returnUrl.length > 0) {
3333
this._subscriptionData.state = 'LOADING';
3434
this.loadSubscription();

0 commit comments

Comments
 (0)