Skip to content

Commit c5536d9

Browse files
committedMar 7, 2023
fix build (followup 433d962 and 9910af6)
1 parent 33d1d2e commit c5536d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/server/qgsserverparameters.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ QStringList QgsServerParameterDefinition::toExpressionList() const
170170

171171
auto isOgcFilter = [filter]()
172172
{
173-
return filter.contains( QStringLiteral( "<Filter>" ) ) or filter.contains( QStringLiteral( "()" ) );
173+
return filter.contains( QStringLiteral( "<Filter>" ) ) || filter.contains( QStringLiteral( "()" ) );
174174
};
175175

176176
while ( pos < filter.size() )

0 commit comments

Comments
 (0)
Please sign in to comment.