Go back to processing everything immediately, see how it goes

This commit is contained in:
Mike Dilger 2023-01-03 17:18:37 +13:00
parent 336db661ec
commit 341af37e7d

View File

@ -31,6 +31,11 @@ impl Minion {
.unwrap_or_else(|| "_".to_owned());
tracing::debug!("{}: {}: NEW EVENT", &self.url, handle);
// Try processing everything immediately
crate::process::process_new_event(&event, true, Some(self.url.clone()))
.await?;
/*
if event.kind == EventKind::TextNote {
// Just store text notes in incoming
GLOBALS
@ -43,6 +48,8 @@ impl Minion {
crate::process::process_new_event(&event, true, Some(self.url.clone()))
.await?;
}
*/
}
}
RelayMessage::Notice(msg) => {