try the shared inbox for update deliveries
This commit is contained in:
parent
2c65dccc22
commit
4e052bcfde
|
@ -1366,9 +1366,15 @@ func honkworldwide(user *WhatAbout, honk *Honk) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for _, f := range getbacktracks(honk.XID) {
|
for _, f := range getbacktracks(honk.XID) {
|
||||||
|
var box *Box
|
||||||
|
ok := boxofboxes.Get(f, &box)
|
||||||
|
if ok && box.Shared != "" {
|
||||||
|
rcpts["%"+box.Shared] = true
|
||||||
|
} else {
|
||||||
rcpts[f] = true
|
rcpts[f] = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
for a := range rcpts {
|
for a := range rcpts {
|
||||||
go deliverate(0, user.ID, a, msg)
|
go deliverate(0, user.ID, a, msg)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue