mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-17 17:25:19 +01:00
fixed faulty regex
This commit is contained in:
parent
284a1fcf40
commit
7c5c230686
1 changed files with 2 additions and 1 deletions
|
@ -74,8 +74,9 @@ class Nadeo extends require('./core') {
|
|||
}
|
||||
|
||||
stripColors(str) {
|
||||
return str.replace(/\$([0-9a-f][^\$]?[^\$]?|[^\$]?)/g,'');
|
||||
return str.replace(/\$([0-9a-f][^\$][^\$]|[^\$]?[^\$]?[^\$])/g,'');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
module.exports = Nadeo;
|
||||
|
|
Loading…
Reference in a new issue