From b77e8a91a2367882d7e8eaff39d5f328e2c5486b Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Tue, 14 Jan 2014 18:15:13 +0400 Subject: [PATCH] fixed bug in filterGIDs(..)... Signed-off-by: Alex A. Naanou --- ui/data.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/data.js b/ui/data.js index 906b3478..f90698ec 100755 --- a/ui/data.js +++ b/ui/data.js @@ -1518,7 +1518,10 @@ function filterGIDs(filter, gids, data, images){ // if key does not exist... if(val == null){ - return exp ? false : true + if(exp == false){ + continue + } + return false } val = typeof(val) == typeof('str') ? val.trim() : val