You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: messages should go in a separate locales file to future proof translations
39
43
deleteconfigCopy.messages;
40
44
41
45
// remove the "algorithm.salt" part as it may have injected keys
42
46
// TODO: this enables messing with the salt file path pre-injection without signature validations, but is required for compatibility w/ the injection workflow
43
-
deleteconfigCopy.algorithm.salt.value;
47
+
deleteconfigCopy.algorithm!.salt!.value;
44
48
// mock the salt source as STRING to ensure that both imported and saved
error: `Configuration file signature mismatch -- required signature is '${configData.signature.config_signature}' but user configuration has '${configHash}' `,
89
+
error: `Configuration file signature mismatch -- required signature is '${configData.meta.signature}' but user configuration has '${configHash}' `,
90
90
};
91
91
}
92
92
93
-
// alphabetically sort the to_translate, static, and reference fields to standardise and prevent
93
+
// alphabetically sort the process, static, and reference fields to standardise and prevent
94
94
// different ordering in config producing different results in output.
95
-
configData.algorithm.columns.to_translate=
96
-
configData.algorithm.columns.to_translate.sort();
95
+
configData.algorithm.columns.process=
96
+
configData.algorithm.columns.process.sort();
97
97
configData.algorithm.columns.reference=
98
98
configData.algorithm.columns.reference.sort();
99
99
configData.algorithm.columns.static=
100
100
configData.algorithm.columns.static.sort();
101
101
102
102
// check if we need to inject the salt data into the config
0 commit comments