summaryrefslogtreecommitdiffstats
path: root/server/src/apub/fetcher.rs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/apub/fetcher.rs')
-rw-r--r--server/src/apub/fetcher.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/server/src/apub/fetcher.rs b/server/src/apub/fetcher.rs
index 40271664..c7467c5b 100644
--- a/server/src/apub/fetcher.rs
+++ b/server/src/apub/fetcher.rs
@@ -169,6 +169,9 @@ pub fn get_or_fetch_and_upsert_remote_user(
if !u.local
&& u
.last_refreshed_at
+ // TODO it won't pick up new avatars, summaries etc until a day after.
+ // Both user and community need an "update" action pushed to other servers
+ // to fix this
.lt(&(naive_now() - chrono::Duration::days(1)))
{
debug!("Fetching and updating from remote user: {}", apub_id);