diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/bzpage.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/bzpage.js b/lib/bzpage.js index f0b4242..0212eac 100644 --- a/lib/bzpage.js +++ b/lib/bzpage.js @@ -525,6 +525,11 @@ BZPage.prototype.parseMailto = function parseMailto(aElement) { BZPage.prototype.getReporter = function getReporter () { var reporterElement = this.doc. querySelector("#bz_show_bug_column_2 > table .vcard:first-of-type > a"); + // RH Bugzilla after upgrade to 3.6.2 moved the information to other column + if (!reporterElement) { + reporterElement = this.doc. + querySelector("#bz_show_bug_column_1 > table .vcard:first-of-type > a"); + } return this.parseMailto(reporterElement); }; |