1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 17:23:37 +00:00

re-set favicon state after unlock/login

This commit is contained in:
Kyle Spearrin
2019-07-02 08:13:33 -04:00
parent 53bf68de49
commit 2aa71f98a1
3 changed files with 18 additions and 4 deletions

View File

@@ -7,6 +7,7 @@ import { I18nService } from '../../abstractions/i18n.service';
import { LockService } from '../../abstractions/lock.service';
import { MessagingService } from '../../abstractions/messaging.service';
import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
import { StateService } from '../../abstractions/state.service';
import { StorageService } from '../../abstractions/storage.service';
import { UserService } from '../../abstractions/user.service';
@@ -35,7 +36,7 @@ export class LockComponent implements OnInit {
protected platformUtilsService: PlatformUtilsService, protected messagingService: MessagingService,
protected userService: UserService, protected cryptoService: CryptoService,
protected storageService: StorageService, protected lockService: LockService,
protected environmentService: EnvironmentService) { }
protected environmentService: EnvironmentService, protected stateService: StateService) { }
async ngOnInit() {
this.pinSet = await this.lockService.isPinLockSet();
@@ -126,7 +127,9 @@ export class LockComponent implements OnInit {
this.doContinue();
}
private doContinue() {
private async doContinue() {
const disableFavicon = await this.storageService.get<boolean>(ConstantsService.disableFaviconKey);
await this.stateService.save(ConstantsService.disableFaviconKey, !!disableFavicon);
this.messagingService.send('unlocked');
if (this.onSuccessfulSubmit != null) {
this.onSuccessfulSubmit();