We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10f3c93 commit b17787bCopy full SHA for b17787b
database/nostr-ndb/CHANGELOG.md
@@ -15,6 +15,8 @@
15
16
### Added
17
18
+- Add the search query arg to the NDB search filter (https://github.com/rust-nostr/nostr/pull/1196
19
+
20
### Fixed
21
22
### Removed
database/nostr-ndb/src/lib.rs
@@ -231,7 +231,7 @@ fn ndb_filter_conversion(f: &Filter) -> nostrdb::Filter {
231
}
232
233
if let Some(ref search) = f.search {
234
- filter = filter.search(&search);
+ filter = filter.search(search);
235
236
237
filter.build()
0 commit comments