From 0cb2c8ee5b4f0e53fb0199f0200e465a01ba5173 Mon Sep 17 00:00:00 2001 From: Mike Dilger Date: Wed, 18 Jan 2023 10:29:16 +1300 Subject: [PATCH] Stop using 'special_since' which looks back way too far for your own text notes and mentions --- src/overlord/minion/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/overlord/minion/mod.rs b/src/overlord/minion/mod.rs index 52a6fe23..14df113f 100644 --- a/src/overlord/minion/mod.rs +++ b/src/overlord/minion/mod.rs @@ -292,7 +292,7 @@ impl Minion { ); // Compute how far to look back - let (feed_since, special_since) = { + let (feed_since, _special_since) = { /* // Find the oldest 'last_fetched' among the 'person_relay' table. // Null values will come through as 0. @@ -352,7 +352,7 @@ impl Minion { filters.push(Filter { p: vec![pubkey.into()], kinds: vec![EventKind::TextNote, EventKind::Repost], - since: Some(special_since), + since: Some(feed_since), ..Default::default() });