Skip to content

Commit 15999b9

Browse files
committed
fix bug with encrypted backup
1 parent 0645354 commit 15999b9

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/popup.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,13 @@ async function init() {
7171
"accounts/updateExport",
7272
await EntryStorage.getExport(instance.$store.state.accounts.entries)
7373
);
74+
instance.$store.commit(
75+
"accounts/updateEncExport",
76+
await EntryStorage.getExport(
77+
instance.$store.state.accounts.entries,
78+
true
79+
)
80+
);
7481
instance.$store.commit("accounts/updateCodes");
7582
instance.$store.commit("style/hideInfo", true);
7683
} else {

0 commit comments

Comments
 (0)