mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
Check encKey when importing encrypted JSON (#968)
* Check encKey when importing encrypted JSON * bump jslib
This commit is contained in:
parent
4c1e36462c
commit
7f9f6d3d0e
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit 1e2c56cacf975eab4527cb3c1a63cf8136b58bd4
|
||||
Subproject commit 306aef73d459dfad8a7a06c32442c9ed2d56922e
|
@ -129,9 +129,9 @@ const containerService = new ContainerService(cryptoService);
|
||||
const authService = new AuthService(cryptoService, apiService,
|
||||
userService, tokenService, appIdService, i18nService, platformUtilsService, messagingService, vaultTimeoutService,
|
||||
consoleLogService);
|
||||
const exportService = new ExportService(folderService, cipherService, apiService);
|
||||
const exportService = new ExportService(folderService, cipherService, apiService, cryptoService);
|
||||
const importService = new ImportService(cipherService, folderService, apiService, i18nService, collectionService,
|
||||
platformUtilsService);
|
||||
platformUtilsService, cryptoService);
|
||||
const notificationsService = new NotificationsService(userService, syncService, appIdService,
|
||||
apiService, vaultTimeoutService, async () => messagingService.send('logout', { expired: true }), consoleLogService);
|
||||
const environmentService = new EnvironmentService(apiService, storageService, notificationsService);
|
||||
|
@ -1036,6 +1036,9 @@
|
||||
"importNothingError": {
|
||||
"message": "Nothing was imported."
|
||||
},
|
||||
"importEncKeyError": {
|
||||
"message": "Error decrypting the exported file. Your encryption key does not match the encryption key used export the data."
|
||||
},
|
||||
"selectFormat": {
|
||||
"message": "Select the format of the import file"
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user