mirror of https://github.com/Chocobozzz/PeerTube
Fix signup email verification
parent
e1a1f9c623
commit
d1ea2a988d
|
@ -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
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue