enable nip10 replies

you can now reply to notes

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2024-07-01 18:18:16 -07:00
parent b31bd2470b
commit e9da25266a
6 changed files with 139 additions and 16 deletions

View File

@@ -129,6 +129,7 @@ pub struct Timeline {
pub selected_view: i32,
pub routes: Vec<Route>,
pub navigating: bool,
pub returning: bool,
/// Our nostrdb subscription
pub subscription: Option<Subscription>,
@@ -143,9 +144,11 @@ impl Timeline {
let selected_view = 0;
let routes = vec![Route::Timeline("Timeline".to_string())];
let navigating = false;
let returning = false;
Timeline {
navigating,
returning,
filter,
views,
subscription,