notecrumbs

a nostr opengraph server build on nostrdb and egui
git clone git://jb55.com/notecrumbs
Log | Files | Refs | README | LICENSE

commit e8637be5c55c0aec585f59aeefe3fa18d9834374
parent 82669a5be9f747e41061f1120ae211ea2d044b6a
Author: William Casarin <jb55@jb55.com>
Date:   Mon, 30 Dec 2024 09:47:15 -0800

expand timeout

Diffstat:
Msrc/render.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/render.rs b/src/render.rs @@ -264,7 +264,7 @@ pub async fn find_note( debug!("finding note(s) with filters: {:?}", filters); let mut streamed_events = client - .stream_events(filters, Some(std::time::Duration::from_millis(800))) + .stream_events(filters, Some(std::time::Duration::from_millis(2000))) .await?; while let Some(event) = streamed_events.next().await {