Fix regex gap in UserSimulator to handle 'Xm' timer format

This commit is contained in:
Your Name
2026-04-20 18:59:15 +00:00
parent 268970671a
commit 1c963345a4
+1 -1
View File
@@ -104,7 +104,7 @@ export class UserSimulator {
.replace(/[\u2800-\u28FF]/g, '')
.replace(/[|/-\\]/g, '')
.replace(/\b\d+(\.\d+)?s\b/g, '')
.replace(/\b\d+m\s+\d+s\b/g, '')
.replace(/\b\d+m(\s+\d+s)?\b/g, '')
.replace(/\(\s*\)/g, '')
.trim();