diff options
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/app/menu/menu.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/menu/menu.component.ts b/client/src/app/menu/menu.component.ts index bcc884878..d5ddc29cb 100644 --- a/client/src/app/menu/menu.component.ts +++ b/client/src/app/menu/menu.component.ts | |||
@@ -131,7 +131,7 @@ export class MenuComponent implements OnInit { | |||
131 | } | 131 | } |
132 | 132 | ||
133 | getExternalLoginHref () { | 133 | getExternalLoginHref () { |
134 | if (this.serverConfig.client.menu.login.redirectOnSingleExternalAuth !== true) return undefined | 134 | if (!this.serverConfig || this.serverConfig.client.menu.login.redirectOnSingleExternalAuth !== true) return undefined |
135 | 135 | ||
136 | const externalAuths = this.serverConfig.plugin.registeredExternalAuths | 136 | const externalAuths = this.serverConfig.plugin.registeredExternalAuths |
137 | if (externalAuths.length !== 1) return undefined | 137 | if (externalAuths.length !== 1) return undefined |