diff --git a/client/src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts b/client/src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts index 054f04310..48ddd7130 100644 --- a/client/src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts +++ b/client/src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts @@ -33,8 +33,6 @@ export class VerifyAccountEmailComponent implements OnInit { this.verificationString = queryParams['verificationString'] this.isPendingEmail = queryParams['isPendingEmail'] === 'true' - console.log(this.isPendingEmail) - if (!this.userId || !this.verificationString) { this.notifier.error(this.i18n('Unable to find user id or verification string.')) } else { @@ -46,7 +44,9 @@ export class VerifyAccountEmailComponent implements OnInit { this.userService.verifyEmail(this.userId, this.verificationString, this.isPendingEmail) .subscribe( () => { - this.authService.refreshUserInformation() + if (this.authService.isLoggedIn()) { + this.authService.refreshUserInformation() + } this.success = true },