Skip to content

Commit e8bc489

Browse files
committed
harmonize blank tile detection configuration syntax
1 parent bedfe0b commit e8bc489

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/cache_sqlite.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ static void _mapcache_cache_sqlite_configuration_parse_xml(mapcache_context *ctx
838838

839839
cache->detect_blank = 0;
840840
if ((cur_node = ezxml_child(node, "detect_blank")) != NULL) {
841-
if(!strcasecmp(cur_node->txt,"true")) {
841+
if(strcasecmp(cur_node->txt,"false")) {
842842
cache->detect_blank = 1;
843843
}
844844
}

0 commit comments

Comments
 (0)