Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/b43d7c4ba69ec4d0d125d5e87839d8dcc6f0f59d?style=split&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

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(); if(this.email) {
this.emailHash = md5.appendStr(this.email).end(); const md5 = new Md5();
this.emailHash = md5.appendStr(this.email).end();
}
this.issuesEnabled = await this.settingsService.issueEnabled().toPromise(); this.issuesEnabled = await this.settingsService.issueEnabled().toPromise();
const customizationSettings = await this.settingsService.getCustomization().toPromise(); const customizationSettings = await this.settingsService.getCustomization().toPromise();

Loading…
Cancel
Save