Skip to content

Commit

Permalink
Merge pull request #700 from mjaschen/task/update-geojson-mime-type
Browse files Browse the repository at this point in the history
Update MIME type for GeoJSON responses
  • Loading branch information
afischerdev authored May 15, 2024
2 parents a6611ed + 6d7b8f0 commit 0b6500c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public String getMimeType() {
} else if ("kml".equals(format)) {
result = "application/vnd.google-earth.kml+xml";
} else if ("geojson".equals(format)) {
result = "application/vnd.geo+json";
result = "application/geo+json";
} else if ("csv".equals(format)) {
result = "text/tab-separated-values";
}
Expand Down

0 comments on commit 0b6500c

Please sign in to comment.