diff --git a/fun.go b/fun.go index b6e375c..bba2c6e 100644 --- a/fun.go +++ b/fun.go @@ -298,6 +298,9 @@ func grapevine(mentions []Mention) []string { func grapeape(s string) []Mention { var mentions []Mention for _, m := range strings.Split(s, " ") { + if m == "" { + continue + } where := gofish(m) if where != "" { mentions = append(mentions, Mention{Who: m, Where: where})