From 53aa979d5b8300b0567610c52ed968521b40a0a3 Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Wed, 10 Apr 2019 21:26:15 -0400 Subject: [PATCH] fix handle extraction if no match found --- honk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/honk.go b/honk.go index 42dc90d..26646a9 100644 --- a/honk.go +++ b/honk.go @@ -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) {