try the shared inbox for update deliveries

master
Ted Unangst 4 years ago
parent 2c65dccc22
commit 4e052bcfde

@ -1366,7 +1366,13 @@ func honkworldwide(user *WhatAbout, honk *Honk) {
}
}
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 {

Loading…
Cancel
Save