继续推进浏览器 session parameter 输入文本 guard

This commit is contained in:
2026-06-14 08:49:28 +08:00
parent 6695b34d46
commit 52674b9ba2
2 changed files with 53 additions and 2 deletions

View File

@@ -9486,7 +9486,7 @@
const browserInterpTextPaths = await saveMachineTextFiles(browserInterpMachineId, {
ini: `[EMC]\nMACHINE = ${browserInterpMachineId}\n`,
toolTable: browserInterpToolTableInputText,
parameters: browserDirectParameterSeedLines(true).join("\n"),
parameters: browserDirectParameterInputText,
});
assertMachineTextStorePaths(
"opfs_save_machine_text_files_staging",
@@ -9633,6 +9633,7 @@
"T5 P9 X1 Y2 Z3 ;browser random rough tool",
"",
].join("\n");
const browserRandomParameterInputText = browserDirectParameterSeedLines().join("\n");
const browserRandomTextPaths = await saveMachineTextFiles(browserRandomMachineId, {
ini: [
"[EMC]",
@@ -9643,7 +9644,7 @@
"",
].join("\n"),
toolTable: browserRandomToolTableInputText,
parameters: browserDirectParameterSeedLines().join("\n"),
parameters: browserRandomParameterInputText,
});
assertMachineTextStorePaths(
"opfs_save_random_machine_text_files_staging",