Skip to content

Commit 00c9972

Browse files
authored
Update Backup/restore settings to/from a file
mozilla#1533 (comment)
1 parent afbd03b commit 00c9972

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/js/options.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ async function backupContainers() {
6666
const content = JSON.stringify(
6767
await browser.runtime.sendMessage({
6868
method: "backupIdentitiesState"
69-
})
69+
}),
70+
null,
71+
2,
7072
);
7173
backupLink.href = `data:application/json;base64,${btoa(content)}`;
7274
backupLink.download = `containers-backup-${(new Date()).toISOString()}.json`;

0 commit comments

Comments
 (0)