Skip to content

Commit

Permalink
Fixes double type in ogcapif api document
Browse files Browse the repository at this point in the history
  • Loading branch information
pblottiere committed Apr 20, 2020
1 parent 4958ac7 commit b5f2196
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/server/qgsserverquerystringparameter.cpp
Expand Up @@ -123,6 +123,10 @@ json QgsServerQueryStringParameter::data() const
{
dataType = "string";
}
else if ( dataType == "double" )
{
dataType = "number";
}
return
{
{ "name", nameString },
Expand Down

0 comments on commit b5f2196

Please sign in to comment.