aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bugzillaBugTriage.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bugzillaBugTriage.js b/bugzillaBugTriage.js
index 2f0da6d..5d5e761 100644
--- a/bugzillaBugTriage.js
+++ b/bugzillaBugTriage.js
@@ -511,7 +511,7 @@ BzPage.prototype.checkComments = function () {
Array.forEach(comments,function (item) {
var email = item.getElementsByClassName("vcard")[0].
getElementsByTagName("a")[0].textContent;
- if (new RegExp(this.reporter).test(email)) {
+ if (new RegExp(that.reporter).test(email)) {
item.style.backgroundColor = ReporterColor.toString();
}
});