handle case where attributedto is array of strings
Ted Unangst tedu@tedunangst.com
Thu, 10 Oct 2019 17:52:36 -0400
1 files changed,
4 insertions(+),
0 deletions(-)
jump to
M
activity.go
→
activity.go
@@ -394,6 +394,10 @@ if t == "Person" || t == "" {
return id } } + s, ok := a.(string) + if ok { + return s + } } return "" }