all repos — honk @ 6123289ef702ef4b0ff6e2b2120db52b3e6190b2

my fork of honk

handle case where attributedto is array of strings
Ted Unangst tedu@tedunangst.com
Thu, 10 Oct 2019 17:52:36 -0400
commit

6123289ef702ef4b0ff6e2b2120db52b3e6190b2

parent

e50ada91433e6c9d45ebcf14b5cb02232d9e6d03

1 files changed, 4 insertions(+), 0 deletions(-)

jump to
M activity.goactivity.go

@@ -394,6 +394,10 @@ if t == "Person" || t == "" {

return id } } + s, ok := a.(string) + if ok { + return s + } } return "" }