fixed the error

pull/3856/head
tidusjar 4 years ago
parent 4e1f529afc
commit b43d7c4ba6

@ -57,8 +57,10 @@ export class MyNavComponent implements OnInit {
}
const md5 = new Md5();
this.emailHash = md5.appendStr(this.email).end();
if(this.email) {
const md5 = new Md5();
this.emailHash = md5.appendStr(this.email).end();
}
this.issuesEnabled = await this.settingsService.issueEnabled().toPromise();
const customizationSettings = await this.settingsService.getCustomization().toPromise();

Loading…
Cancel
Save