Fix issues with chat logging after chat format refactoring

- Fix '<username.undefined>' in log
- Fix channel log filter
This commit is contained in:
calzoneman 2013-11-20 10:10:01 -06:00
parent dfa454618a
commit 85e413bcdf
2 changed files with 2 additions and 13 deletions

View file

@ -1889,7 +1889,7 @@ function filterChannelLog() {
return;
}
if (chat && pre.match(/<[\w-]+\.>/)) {
if (chat && pre.match(/<[\w-]+(\.\w*)?>/)) {
include.push(line);
return;
}