all repos — honk @ 574517c141f7b4e2c18d38af56e5a5cb522466f1

my fork of honk

should only try to get boxes where not already guessed
Ted Unangst tedu@tedunangst.com
Fri, 04 Feb 2022 12:45:44 -0500
commit

574517c141f7b4e2c18d38af56e5a5cb522466f1

parent

4cf0d95097fb3366550ed3031d15e629a456ccba

1 files changed, 9 insertions(+), 5 deletions(-)

jump to
M activity.goactivity.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 + } } } }