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
committed by Mahima Shanware
parent 27ed3a4d07
commit 5bce1f78bd
+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();