Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix msissing negation
  • Loading branch information
3nids committed Sep 15, 2020
1 parent 7265d9d commit 4afe021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/services/wms/qgswmsrenderer.cpp
Expand Up @@ -1567,7 +1567,7 @@ namespace QgsWms
for ( int i = 0; i < featureAttributes.count(); ++i )
{
//skip attribute if it is explicitly excluded from WMS publication
if ( fields.at( i ).configurationFlags().testFlag( QgsField::ConfigurationFlag::ExposeViaWms ) )
if ( !fields.at( i ).configurationFlags().testFlag( QgsField::ConfigurationFlag::ExposeViaWms ) )
{
continue;
}
Expand Down

0 comments on commit 4afe021

Please sign in to comment.