notecrumbs

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

commit 328c7467e73013e7dc0e21fd1b4a5f4581033213
parent 4532af25e87b41880ec692d4bb2dfb0d8ef3780e
Author: William Casarin <jb55@jb55.com>
Date:   Wed, 20 Dec 2023 15:39:38 -0800

bump abbrev, fix a warning

Diffstat:
Msrc/main.rs | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main.rs b/src/main.rs @@ -154,7 +154,7 @@ fn serve_note_html( // 4: Full content let hostname = "https://damus.io"; - let abbrev_content = abbreviate(&note.note.content, 20); + let abbrev_content = abbreviate(&note.note.content, 64); let content = &note.note.content; write!( @@ -200,7 +200,7 @@ fn serve_note_html( hostname, nip19.to_bech32().unwrap(), content - ); + )?; Ok(Response::builder() .header(header::CONTENT_TYPE, "text/html")