Skip to content

Commit 3dddce9

Browse files
committed
update
1 parent ebb9004 commit 3dddce9

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/rpc/utils/storageUtils.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,11 @@ class StorageUtils {
342342
for (let all_input = 0; all_input < input.length; all_input++) {
343343
const element = input[all_input];
344344
let check_index = element.indexOf("输入:");
345+
346+
if (check_index == -1) {
347+
check_index = element.indexOf("输入:");
348+
}
349+
345350
if (check_index == -1) {
346351
check_index = element.indexOf("Input:");
347352
}
@@ -351,6 +356,9 @@ class StorageUtils {
351356
continue;
352357
}
353358
check_index = element.indexOf("输出:");
359+
if (check_index == -1) {
360+
check_index = element.indexOf("输出:");
361+
}
354362
if (check_index == -1) {
355363
check_index = element.indexOf("Output:");
356364
}

0 commit comments

Comments
 (0)