aboutsummaryrefslogtreecommitdiffstats
path: root/data/lib/queries.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2011-04-22 04:57:30 +0200
committerMatěj Cepl <mcepl@redhat.com>2011-06-05 14:46:49 +0200
commit2a04c3fc60e4f9cd8b59cbe6bcfbd56d0e29c98f (patch)
tree7710cf2dc8ca319bf995859babc45fa797c042b2 /data/lib/queries.js
parentfe02d1337e9f4377b381f311efb8224a50ef8903 (diff)
downloadbugzilla-triage-2a04c3fc60e4f9cd8b59cbe6bcfbd56d0e29c98f.tar.gz
Fixed other functions broken
* not all functions are able to accept the null as return value (directly or indirectly) of filterByRegexp * finally make all logic not to affect components which shouldn't be bothered with the test.
Diffstat (limited to 'data/lib/queries.js')
-rw-r--r--data/lib/queries.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/data/lib/queries.js b/data/lib/queries.js
index 0c00792..7f935c8 100644
--- a/data/lib/queries.js
+++ b/data/lib/queries.js
@@ -78,6 +78,9 @@ function queryForSelection() {
*/
function queryUpstreamCallback(text, queryUpBug) {
var searchData = filterByRegexp(queryUpBug, getComponent());
+ if (!searchData) {
+ return ; // not sure why it should happen, but certainly better
+ }
var urlBase = searchData.url;
text = searchData.searchBy+":"+searchData.fillIn+" "+text.trim();
if (searchData.fillIn == "$$$") {