1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 05:13:29 +00:00

exit immediately after login command run (#5183)

This commit is contained in:
Kyle Spearrin
2023-05-03 14:15:32 -04:00
committed by GitHub
parent 419a041739
commit b4a96c2365

View File

@@ -157,7 +157,7 @@ export class Program {
async () => await this.main.logout()
);
const response = await command.run(email, password, options);
this.processResponse(response);
this.processResponse(response, true);
}
});