Fix an issue for first time running theme code, theme will not be available (#1081)

This commit is contained in:
Joseph Milazzo 2022-02-16 07:33:03 -08:00 committed by GitHub
parent 61130b0a69
commit ac9ac00163
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ export class AccountService implements OnDestroy {
localStorage.setItem(this.userKey, JSON.stringify(user));
localStorage.setItem(this.lastLoginKey, user.username);
if (user.preferences) {
if (user.preferences && user.preferences.theme) {
this.themeService.setTheme(user.preferences.theme.name);
} else {
this.themeService.setTheme(this.themeService.defaultTheme);