damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 579303f741865319c9eff16369b6675953be3fc1
parent 104f490e867e57c1f4cd5da42b76cc87dbb87a89
Author: William Casarin <jb55@jb55.com>
Date:   Mon,  4 Dec 2023 14:51:58 -0800

ndb: fix minor text search result bug

Diffstat:
Mnostrdb/Ndb.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nostrdb/Ndb.swift b/nostrdb/Ndb.swift @@ -191,7 +191,7 @@ class Ndb { case 17: note_ids.append(results.results.17.key.note_id) case 18: note_ids.append(results.results.18.key.note_id) case 19: note_ids.append(results.results.19.key.note_id) - case 20: note_ids.append(results.results.10.key.note_id) + case 20: note_ids.append(results.results.20.key.note_id) default: break }