Skip to content

Commit

Permalink
Merge pull request #35150 from pblottiere/ogcapif_double
Browse files Browse the repository at this point in the history
Fixes double type in ogcapif api document
  • Loading branch information
elpaso committed Mar 18, 2020
2 parents 01c7cb1 + d7569e5 commit dd5928c
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 dd5928c

Please sign in to comment.