Skip to content

Commit 04d2375

Browse files
committed
load-interstitials-after-loading-user-session-in-oauth
1 parent 45e30f4 commit 04d2375

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/app/authorize/pages/authorize/authorize.component.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,22 @@ export class AuthorizeComponent {
6666
togglz: this.loadTogglzState(),
6767
emails: this.loadEmails(),
6868
})
69-
.pipe(tap(() => this.loadInterstitialViewed()))
69+
.pipe(
70+
tap(({ userSession }) => {
71+
if (this.isUserLoggedIn(userSession)) {
72+
this.loadInterstitialViewed()
73+
}
74+
})
75+
)
7076
.subscribe(({ userSession }) => {
7177
this.handleUserSession(userSession)
7278
})
7379
}
7480

81+
private isUserLoggedIn(userSession: any): boolean {
82+
return !!userSession?.userSession?.userInfo
83+
}
84+
7585
/**
7686
* Called by template to handle final redirection.
7787
*/

0 commit comments

Comments
 (0)