diff --git a/activity.go b/activity.go index 4935a95..b08d217 100644 --- a/activity.go +++ b/activity.go @@ -1123,12 +1123,18 @@ func jonkjonk(user *WhatAbout, h *Honk) (junk.Junk, junk.Junk) { case "ack": j["type"] = "Read" j["object"] = h.XID + if h.Convoy != "" { + j["context"] = h.Convoy + } case "deack": b := junk.New() b["id"] = user.URL + "/" + "ack" + "/" + shortxid(h.XID) b["type"] = "Read" b["actor"] = user.URL b["object"] = h.XID + if h.Convoy != "" { + b["context"] = h.Convoy + } j["type"] = "Undo" j["object"] = b }