aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--data/lib/otherButtons.js8
-rw-r--r--lib/libbugzilla.js2
2 files changed, 6 insertions, 4 deletions
diff --git a/data/lib/otherButtons.js b/data/lib/otherButtons.js
index a766668..6bcc043 100644
--- a/data/lib/otherButtons.js
+++ b/data/lib/otherButtons.js
@@ -113,9 +113,9 @@ function addingEmbelishments(list) {
}
// TODO Get compiz bugs as well
- if ((constantData.chipNames) && (list[0])
+ if ((new Boolean(constantData.chipNames)) && (list[0].length > 0)
&& (!FillMagicDoneRE.test(getSummary()))
- && (maintCCAddr === "xgl-maint@redhat.com")) {
+ && (maintCCAddr == "xgl-maint@redhat.com")) {
// Add find chip magic button
var whiteboard_string = document
.getElementById("status_whiteboard").value;
@@ -197,8 +197,8 @@ function setBranding(xLogAtts) {
var compElems;
if (config.suspiciousComponents
&& isInList(getComponent(), config.suspiciousComponents)
- && (compElems = document
- .getElementById("bz_component_edit_container"))) {
+ && ((compElems = document
+ .getElementById("bz_component_edit_container")))) {
compElems.style.background = "red none";
}
diff --git a/lib/libbugzilla.js b/lib/libbugzilla.js
index a1792ea..3763eff 100644
--- a/lib/libbugzilla.js
+++ b/lib/libbugzilla.js
@@ -379,6 +379,8 @@ exports.initialize = function initialize(config, callback) {
onComplete: function(response) {
if (response.status == 200) {
config.constantData[title] = response.json;
+ } else {
+ console.error("Cannot download " + title + " from URL " + url);
}
}
}).get();