should only try to get boxes where not already guessed
Ted Unangst tedu@tedunangst.com
Fri, 04 Feb 2022 12:45:44 -0500
1 files changed,
9 insertions(+),
5 deletions(-)
jump to
M
activity.go
→
activity.go
@@ -1372,12 +1372,16 @@ rcpts[h.XID] = true
} } for _, f := range getbacktracks(honk.XID) { - var box *Box - ok := boxofboxes.Get(f, &box) - if ok && box.Shared != "" { - rcpts["%"+box.Shared] = true + if f[0] == '%' { + rcpts[f] = true } else { - rcpts[f] = true + var box *Box + ok := boxofboxes.Get(f, &box) + if ok && box.Shared != "" { + rcpts["%"+box.Shared] = true + } else { + rcpts[f] = true + } } } }