From f01ee131022a2782c395a8aafa06d87603334944 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 12 Jan 2018 22:31:54 -0500 Subject: [PATCH] pass storage to runtime bg --- 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 d9f93f74116..8229ad04422 100644 --- a/src/background/main.background.ts +++ b/src/background/main.background.ts @@ -147,7 +147,7 @@ export default class MainBackground { // Background this.runtimeBackground = new RuntimeBackground(this, this.autofillService, this.cipherService, - this.platformUtilsService); + this.platformUtilsService, this.storageService); if (!this.isSafari) { this.commandsBackground = new CommandsBackground(this, this.passwordGenerationService);