all repos — honk @ 827dbda178ed1f09071b4a37ab6396191ce8a11d

my fork of honk

fix search crash with extra space
Ted Unangst tedu@tedunangst.com
Tue, 07 Jul 2020 16:53:30 -0400
commit

827dbda178ed1f09071b4a37ab6396191ce8a11d

parent

241542ebcc413171ccdaf34ce745869401578048

2 files changed, 5 insertions(+), 0 deletions(-)

jump to
M database.godatabase.go

@@ -264,6 +264,9 @@ params = append(params, userid)

terms := strings.Split(q, " ") for _, t := range terms { + if t == "" { + continue + } negate := " " if t[0] == '-' { t = t[1:]
M docs/changelog.txtdocs/changelog.txt

@@ -2,6 +2,8 @@ changelog

=== next ++ Fix crash in search with extra space. + + Fix pubkey issue with domain only keys. === 0.9.2 Malleable Maltote