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 958c477 commit 5a06e0fCopy full SHA for 5a06e0f
src/ui/app.ts
@@ -109,10 +109,13 @@ class ArchiveWebApp extends ReplayWebApp {
109
this.autorun = (await getLocalOption("autorunBehaviors") === "1");
110
111
const archiveCookies = await getLocalOption("archiveCookies");
112
+
113
// default to true if unset to match existing behavior
114
if (archiveCookies === null) {
115
await setLocalOption("archiveCookies", "1");
116
this.archiveCookies = true;
117
+ } else {
118
+ this.archiveCookies = archiveCookies === "1";
119
}
120
121
this.archiveStorage = await getLocalOption("archiveStorage") === "1";
0 commit comments