Skip to content

Commit cf92096

Browse files
committed
feat: 任务列表不再显示 MaaTaskerPostStop
1 parent a3f4dc6 commit cf92096

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/utils/logParser.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,8 @@ export class LogParser {
372372
console.log(`字符串池统计: ${this.stringPool.size()} 个唯一字符串`)
373373
this.stringPool.clear()
374374

375-
return tasks
375+
// 过滤掉系统任务 MaaTaskerPostStop
376+
return tasks.filter(task => task.entry !== 'MaaTaskerPostStop')
376377
}
377378

378379
/**

0 commit comments

Comments
 (0)