diff --git a/src/column.rs b/src/column.rs index 358a5d8..ddccb1c 100644 --- a/src/column.rs +++ b/src/column.rs @@ -1,6 +1,6 @@ use crate::error::FilterError; -use crate::filter::FilterState; use crate::filter; +use crate::filter::FilterState; use crate::{timeline::Timeline, Error}; use enostr::Pubkey; use nostrdb::{Filter, Ndb, Transaction}; diff --git a/src/timeline.rs b/src/timeline.rs index 19614d1..6c2d1b5 100644 --- a/src/timeline.rs +++ b/src/timeline.rs @@ -70,12 +70,11 @@ impl<'a> TimelineSource<'a> { /// Check local subscriptions for new notes and insert them into /// timelines (threads, columns) pub fn poll_notes_into_view(&self, txn: &Transaction, app: &mut Damus) -> Result<()> { - let sub = - if let Some(sub) = self.sub(app, txn) { - sub - } else { - return Err(Error::no_active_sub()); - }; + let sub = if let Some(sub) = self.sub(app, txn) { + sub + } else { + return Err(Error::no_active_sub()); + }; let new_note_ids = app.ndb.poll_for_notes(sub, 100); if new_note_ids.is_empty() { diff --git a/src/ui/thread.rs b/src/ui/thread.rs index 68faa3c..9ee6a9d 100644 --- a/src/ui/thread.rs +++ b/src/ui/thread.rs @@ -71,7 +71,8 @@ impl<'a> ThreadView<'a> { }; // poll for new notes and insert them into our existing notes - if let Err(e) = TimelineSource::Thread(root_id).poll_notes_into_view(&txn, self.app) { + if let Err(e) = TimelineSource::Thread(root_id).poll_notes_into_view(&txn, self.app) + { error!("Thread::poll_notes_into_view: {e}"); }