try the shared inbox for update deliveries
Ted Unangst tedu@tedunangst.com
Wed, 29 Jul 2020 02:42:11 -0400
1 files changed,
7 insertions(+),
1 deletions(-)
jump to
M
activity.go
→
activity.go
@@ -1366,7 +1366,13 @@ rcpts[h.XID] = true
} } for _, f := range getbacktracks(honk.XID) { - rcpts[f] = true + var box *Box + ok := boxofboxes.Get(f, &box) + if ok && box.Shared != "" { + rcpts["%"+box.Shared] = true + } else { + rcpts[f] = true + } } } for a := range rcpts {