summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mbgl/style/filter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/style/filter.cpp b/src/mbgl/style/filter.cpp
index 2559eb4816..18b8b0a7f4 100644
--- a/src/mbgl/style/filter.cpp
+++ b/src/mbgl/style/filter.cpp
@@ -13,7 +13,7 @@ bool Filter::operator()(const expression::EvaluationContext &context) const {
const optional<bool> typed = expression::fromExpressionValue<bool>(*result);
return typed ? *typed : false;
} else {
- return true;
+ return false;
}
}