chore: fix location message

This commit is contained in:
Bo-Yi Wu 2019-09-25 21:37:18 +08:00
parent 27b2f70f8a
commit 572cabb9c8
2 changed files with 4 additions and 5 deletions

View File

@ -80,7 +80,7 @@ docker: Error response from daemon: Container command
Execute from the working directory:
```
```sh
docker run --rm \
-e PLUGIN_TOKEN=xxxxxxx \
-e PLUGIN_TO=xxxxxxx \
@ -90,8 +90,8 @@ docker run --rm \
-e PLUGIN_STICKER=tests/github-logo.png \
-e PLUGIN_AUDIO=tests/audio.mp3 \
-e PLUGIN_VOICE=tests/voice.ogg \
-e PLUGIN_LOCATION=24.9163213,121.1424972 \
-e PLUGIN_VENUE=24.9163213,121.1424972,title,address \
-e PLUGIN_LOCATION="24.9163213 121.1424972" \
-e PLUGIN_VENUE="24.9163213 121.1424972 title address" \
-e PLUGIN_VIDEO=tests/video.mp4 \
-e PLUGIN_DEBUG=true \
-e PLUGIN_ONLY_MATCH_EMAIL=false \

View File

@ -142,11 +142,10 @@ func globList(keys []string) []string {
}
func convertLocation(value string) (Location, bool) {
log.Println(value)
var latitude, longitude float64
var title, address string
var err error
values := trimElement(strings.Split(value, ","))
values := trimElement(strings.Split(value, " "))
if len(values) < 2 {
return Location{}, true