[auth] fix blinking profile picture

This commit is contained in:
nymkappa
2023-08-28 09:29:13 +02:00
parent 8ba4a7b421
commit 7fd8790750
3 changed files with 7 additions and 10 deletions

View File

@@ -29,7 +29,6 @@ export class MasterPageComponent implements OnInit {
networkPaths: { [network: string]: string };
networkPaths$: Observable<Record<string, string>>;
footerVisible = true;
userAuth: any | undefined;
user: any = undefined;
servicesEnabled = false;
menuOpen = false;
@@ -94,7 +93,7 @@ export class MasterPageComponent implements OnInit {
}
refreshAuth(): void {
this.apiService.getUserInfo$().subscribe(user => this.user = user);
this.user = this.storageService.getAuth()?.user ?? null;
}
hamburgerClick(event): void {

View File

@@ -30,6 +30,11 @@ export class MenuComponent implements OnInit {
ngOnInit(): void {
this.userAuth = this.storageService.getAuth();
if (this.userAuth && this.userAuth.user && !this.userAuth.user.imageMd5) {
this.logout();
return;
}
if (this.stateService.env.GIT_COMMIT_HASH_MEMPOOL_SPACE) {
this.userMenuGroups$ = this.apiService.getUserMenuGroups$();
}