1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-21 16:18:28 +01:00

fix cipher service factory not using domain settings service correctly (#8312)

This commit is contained in:
Jonathan Prusik 2024-03-12 17:00:51 -04:00 committed by GitHub
parent 0a595ea95e
commit 31d37a817c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -349,13 +349,12 @@ import { ModalService } from "./modal.service";
provide: CipherServiceAbstraction,
useFactory: (
cryptoService: CryptoServiceAbstraction,
settingsService: SettingsServiceAbstraction,
domainSettingsService: DomainSettingsService,
apiService: ApiServiceAbstraction,
i18nService: I18nServiceAbstraction,
searchService: SearchServiceAbstraction,
stateService: StateServiceAbstraction,
autofillSettingsService: AutofillSettingsServiceAbstraction,
domainSettingsService: DomainSettingsService,
encryptService: EncryptService,
fileUploadService: CipherFileUploadServiceAbstraction,
configService: ConfigServiceAbstraction,
@ -374,7 +373,7 @@ import { ModalService } from "./modal.service";
),
deps: [
CryptoServiceAbstraction,
SettingsServiceAbstraction,
DomainSettingsService,
ApiServiceAbstraction,
I18nServiceAbstraction,
SearchServiceAbstraction,