Merge branch 'rrt/dev' into rrt/testing

This commit is contained in:
Aaron Louie 2020-06-02 00:24:16 -04:00
commit 58db2737bd
1 changed files with 5 additions and 1 deletions

View File

@ -39,7 +39,11 @@ export class NavbarComponent {
if (isSignedIn()) {
this.api.getUser().subscribe(u => {
this.user = u;
this.googleAnalyticsService.setUser(this.user.uid);
if (this.user && this.user.uid) {
this.googleAnalyticsService.setUser(this.user.uid);
}
this._loadNavLinks();
}, error => {
localStorage.removeItem('token');