We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 571d605 commit 4c53ee0Copy full SHA for 4c53ee0
1 file changed
assets/js/hubsubscription.js
@@ -28,7 +28,7 @@ class HubSubscription {
28
if (encodedReturnUrl) {
29
this._subscriptionData.returnUrl = decodeURIComponent(encodedReturnUrl);
30
}
31
- this._subscriptionData.session = fragmentParams.get('session') ?? searchParams.get('session');
+ this._subscriptionData.session = searchParams.get('session');
32
if (this._subscriptionData.hubId && this._subscriptionData.hubId.length > 0 && this._subscriptionData.returnUrl && this._subscriptionData.returnUrl.length > 0) {
33
this._subscriptionData.state = 'LOADING';
34
this.loadSubscription();
0 commit comments