From c603f0a1a2985bf225786122beeaf248ca87cd99 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Thu, 5 May 2011 12:02:51 +0200 Subject: Make the script more reliable against JSON-hosting sites being down. Fixes #92 --- data/lib/otherButtons.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'data/lib/otherButtons.js') 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"; } -- cgit