update nostrdb to fix note corruption bug

Changelog-Fixed: fix note content corruption bug with damus.io links
Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2024-08-01 13:44:28 -07:00
parent 20f0aed2ed
commit 6e27c34267
3 changed files with 3 additions and 3 deletions

View File

@@ -372,7 +372,7 @@ fn poll_notes_for_timeline<'a>(
return Err(Error::NoActiveSubscription);
};
let new_note_ids = damus.ndb.poll_for_notes(sub, 100);
let new_note_ids = damus.ndb.poll_for_notes(sub.id, 100);
if new_note_ids.is_empty() {
return Ok(());
} else {