Merge pull request #391 from dallonf/patch-1

Fix for #369
This commit is contained in:
Raymond Feng 2015-01-12 15:39:45 -08:00
commit 1236171962
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ function applyFilter(filter) {
return undefined;
}
if (typeof example === 'object') {
if (typeof example === 'object' && example !== null) {
// ignore geo near filter
if (example.near) {
return true;