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 ebb9004 commit 3dddce9Copy full SHA for 3dddce9
src/rpc/utils/storageUtils.ts
@@ -342,6 +342,11 @@ class StorageUtils {
342
for (let all_input = 0; all_input < input.length; all_input++) {
343
const element = input[all_input];
344
let check_index = element.indexOf("输入:");
345
+
346
+ if (check_index == -1) {
347
+ check_index = element.indexOf("输入:");
348
+ }
349
350
if (check_index == -1) {
351
check_index = element.indexOf("Input:");
352
}
@@ -351,6 +356,9 @@ class StorageUtils {
356
continue;
357
353
358
check_index = element.indexOf("输出:");
359
360
+ check_index = element.indexOf("输出:");
361
354
362
355
363
check_index = element.indexOf("Output:");
364
0 commit comments