mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
fixed the error
This commit is contained in:
parent
4e1f529afc
commit
b43d7c4ba6
1 changed files with 4 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue