notedeck

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

commit 5521779f4233788998b6d53fa1c03ef3fc053185
parent 1dab4757dfac69d27ef9d4b66c7cb9b48ed077b6
Author: William Casarin <jb55@jb55.com>
Date:   Thu, 15 Feb 2024 13:04:54 -0800

android: fix args

Signed-off-by: William Casarin <jb55@jb55.com>

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

diff --git a/src/lib.rs b/src/lib.rs @@ -43,6 +43,6 @@ pub async fn android_main(app: AndroidApp) { let res_ = eframe::run_native( "Damus NoteDeck", options, - Box::new(|cc| Box::new(Damus::new(cc, path))), + Box::new(|cc| Box::new(Damus::new(cc, path, vec![]))), ); }