Fix always logging out instead of lock (#444)

This commit is contained in:
Thomas Rittson 2022-01-13 17:35:48 +10:00 committed by GitHub
parent da640794c4
commit b962af303a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ export class Program extends BaseProgram {
.action(async (cmd) => {
await this.exitIfNotAuthed();
if (this.main.keyConnectorService.getUsesKeyConnector()) {
if (await this.main.keyConnectorService.getUsesKeyConnector()) {
const logoutCommand = new LogoutCommand(
this.main.authService,
this.main.i18nService,