diff options
-rw-r--r-- | data/rhlib/rhbzpage.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rhlib/rhbzpage.js b/data/rhlib/rhbzpage.js index d65ad8d..a32f7fc 100644 --- a/data/rhlib/rhbzpage.js +++ b/data/rhlib/rhbzpage.js @@ -232,7 +232,7 @@ function chipsetMagic (interestingLineArr) { var interestingPCIID = interestingArray[2].trim().split(":"); // If we have Chipset line, we should parse it as well and // add to the button - if (interestingLineArr.length > 1) { + if (interestingPCIID.length > 1) { var PCIid = (interestingPCIID[0] + ":" + interestingPCIID[1]). toUpperCase(); console.myDebug("PCIid = " + PCIid); |