minor bug fix

This commit is contained in:
Samuel Philipp 2021-01-10 18:26:10 +01:00
parent ec6ae661b8
commit 4cdec767b6
2 changed files with 1 additions and 22 deletions

View file

@ -38,7 +38,7 @@ export class AppComponent implements OnInit {
this.api.getMetaInfo().subscribe(info => {
this.title = info.title;
this.description = info.description;
this.translations = info.translations;
this.translations = info.translations || {};
this.htmlTitle.setTitle(this.title);
});
}