We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afbd03b commit 00c9972Copy full SHA for 00c9972
src/js/options.js
@@ -66,7 +66,9 @@ async function backupContainers() {
66
const content = JSON.stringify(
67
await browser.runtime.sendMessage({
68
method: "backupIdentitiesState"
69
- })
+ }),
70
+ null,
71
+ 2,
72
);
73
backupLink.href = `data:application/json;base64,${btoa(content)}`;
74
backupLink.download = `containers-backup-${(new Date()).toISOString()}.json`;
0 commit comments