diff options
Diffstat (limited to 'lib/rhbzpage.js')
-rw-r--r-- | lib/rhbzpage.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/rhbzpage.js b/lib/rhbzpage.js index 38b3096..78c4f7d 100644 --- a/lib/rhbzpage.js +++ b/lib/rhbzpage.js @@ -70,8 +70,12 @@ var RHBugzillaPage = function RHBugzillaPage(win, config) { this.chipMagicInterestingLine = ""; this.login = this.getLogin(); - this.maintCCAddr = util.filterByRegexp(this.constantData.CCmaintainer, - this.component); + + this.maintCCAddr = null; + if (this.constantData.CCmaintainer) { + this.maintCCAddr = util.filterByRegexp(this.constantData.CCmaintainer, + this.component); + } var ITbutton = this.doc.getElementById("cf_issuetracker"); this.its = ITbutton ? ITbutton.value.trim() : ""; |