Skip to content

Commit

Permalink
Fix: Fix time error for min time (#2423)
Browse files Browse the repository at this point in the history
  • Loading branch information
zjiefee committed Nov 13, 2023
1 parent b318257 commit c73a677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/slicer/Slicer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export default class Slicer extends EventEmitter {
const timeRegex = /^\[.*] \[info] Print time \(s\): ([\d]+)$/;

array.forEach((item) => {
if (item.length < 10) {
if (item.length < 6) {
return;
}
// if (item.indexOf('[debug]') !== -1) {
Expand Down

0 comments on commit c73a677

Please sign in to comment.