fix handle extraction if no match found

This commit is contained in:
Ted Unangst 2019-04-10 21:26:15 -04:00
parent 21024fcd56
commit 53aa979d5b
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ func honkerhandle(h string) string {
if len(m) > 2 {
return fmt.Sprintf("%s@%s", m[2], m[1])
}
return ""
return h
}
func reverbolate(honks []*Honk) {