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 18c465e commit 94006b7Copy full SHA for 94006b7
frontend/src/ts/utils/url-handler.ts
@@ -163,6 +163,9 @@ export function loadTestSettingsFromUrl(getOverride?: string): void {
163
const getValue = Misc.findGetParameter("testSettings", getOverride);
164
if (getValue === null) return;
165
166
+ // if the encoding structure or method ever changes, make sure to support the old data format
167
+ // otherwise eiko will be sad
168
+
169
const { data: de, error } = tryCatchSync(() =>
170
parseJsonWithSchema(decompressFromURI(getValue) ?? "", TestSettingsSchema)
171
);
0 commit comments