notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 637b05c1e286117669a6d66213a9bacc25bbd266
parent f436b49feccfee555b03ddacc146d66ed92e61d7
Author: kernelkind <kernelkind@gmail.com>
Date:   Thu,  4 Sep 2025 15:40:00 -0400

make `get_reposted_note` pub

Signed-off-by: kernelkind <kernelkind@gmail.com>

Diffstat:
Mcrates/notedeck_ui/src/note/mod.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crates/notedeck_ui/src/note/mod.rs b/crates/notedeck_ui/src/note/mod.rs @@ -677,7 +677,7 @@ fn get_zapper<'a>( }) } -fn get_reposted_note<'a>(ndb: &Ndb, txn: &'a Transaction, note: &Note) -> Option<Note<'a>> { +pub fn get_reposted_note<'a>(ndb: &Ndb, txn: &'a Transaction, note: &Note) -> Option<Note<'a>> { if note.kind() != 6 { return None; }