diff options
Diffstat (limited to 'vendor/github.com/blevesearch/bleve/geo/parse.go')
-rw-r--r-- | vendor/github.com/blevesearch/bleve/geo/parse.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/blevesearch/bleve/geo/parse.go b/vendor/github.com/blevesearch/bleve/geo/parse.go index 0511fea7b6..5d833d9110 100644 --- a/vendor/github.com/blevesearch/bleve/geo/parse.go +++ b/vendor/github.com/blevesearch/bleve/geo/parse.go @@ -85,7 +85,7 @@ func ExtractGeoPoint(thing interface{}) (lon, lat float64, success bool) { } } else { // geohash - lat, lon = GeoHashDecode(geoStr) + lat, lon = DecodeGeoHash(geoStr) foundLat = true foundLon = true } |