From d52111ca8e6c8c83fdc6b6838a30d3be7205828b Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Sat, 13 Apr 2019 15:57:25 -0400 Subject: [PATCH] looks like we can just treat article as a long note --- activity.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activity.go b/activity.go index 8d13880..4ef7419 100644 --- a/activity.go +++ b/activity.go @@ -387,7 +387,7 @@ func xonkxonk(item interface{}) *Honk { if obj != nil { ot, _ := jsongetstring(obj, "type") url, _ = jsongetstring(obj, "url") - if ot == "Note" { + if ot == "Note" || ot == "Article" { audience = newphone(audience, obj) xid, _ = jsongetstring(obj, "id") content, _ = jsongetstring(obj, "content")