From 84989aa9e26258b00188a0c7443c4ea76fe81d2d Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 12 Jan 2018 21:53:11 -0500 Subject: [PATCH] evaluate none folder as a string function --- src/background/main.background.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/background/main.background.ts b/src/background/main.background.ts index f121e8ee9b..d9f93f7411 100644 --- a/src/background/main.background.ts +++ b/src/background/main.background.ts @@ -126,7 +126,7 @@ export default class MainBackground { this.cipherService = new CipherService(this.cryptoService, this.userService, this.settingsService, this.apiService, this.storageService); this.folderService = new FolderService(this.cryptoService, this.userService, - () => this.i18nService.noneFolder, delayi18nLoad, this.apiService, this.storageService); + () => this.i18nService.noneFolder, this.apiService, this.storageService); this.collectionService = new CollectionService(this.cryptoService, this.userService, this.storageService); this.lockService = new LockService(this.cipherService, this.folderService, this.collectionService, this.cryptoService, this.platformUtilsService, this.storageService,