diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-02-16 16:16:33 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-02-16 16:16:33 +0100 |
commit | d448b16f969be780444190d178dad4c8b2347612 (patch) | |
tree | 70518229a92bf0e7b5cdc2497bd59356de1d47a3 /lib/main.js | |
parent | 10dcf8de5c6965832452c538451d6170b3bafb66 (diff) | |
download | bugzilla-triage-d448b16f969be780444190d178dad4c8b2347612.tar.gz |
Fix the password recognition.
* doh! !== instead of ===
* also skip attachment.cgi page
Diffstat (limited to 'lib/main.js')
-rw-r--r-- | lib/main.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/main.js b/lib/main.js index 0348842..cd8f259 100644 --- a/lib/main.js +++ b/lib/main.js @@ -139,7 +139,8 @@ libbz.initialize(libbz.config, function () { pageMod.PageMod({ include: [ - "https://bugzilla.redhat.com/process_bug.cgi" + "https://bugzilla.redhat.com/process_bug.cgi", + "https://bugzilla.redhat.com/attachment.cgi" ], contentScriptWhen: 'ready', contentScriptFile: self.data.url("skip-bug.js") |