summaryrefslogtreecommitdiff
path: root/rss.c
diff options
context:
space:
mode:
authorGravatar grunfink2025-05-30 09:47:23 +0200
committerGravatar grunfink2025-05-30 09:47:23 +0200
commitcd51d5310c8fa08a27018b40e6afdd1eb3d6e12e (patch)
tree0ba1eead42e9c200d5e78045823ae596c524599e /rss.c
parentAlso store the url in the RSS metadata. (diff)
downloadsnac2-cd51d5310c8fa08a27018b40e6afdd1eb3d6e12e.tar.gz
snac2-cd51d5310c8fa08a27018b40e6afdd1eb3d6e12e.tar.xz
snac2-cd51d5310c8fa08a27018b40e6afdd1eb3d6e12e.zip
Call enqueue_actor_fresh() from rss_to_timeline().
Diffstat (limited to 'rss.c')
-rw-r--r--rss.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/rss.c b/rss.c
index 8d55370..f72dac4 100644
--- a/rss.c
+++ b/rss.c
@@ -227,10 +227,11 @@ void rss_to_timeline(snac *user, const char *url)
227 continue; 227 continue;
228 } 228 }
229 229
230 if (!valid_status(actor_request(user, attr_to, NULL))) 230 enqueue_actor_refresh(user, attr_to, 0);
231 continue;
232 231
233 timeline_add(user, id, obj); 232 timeline_add(user, id, obj);
233
234 snac_log(user, xs_fmt("new '%s' (RSS) %s %s", type, attr_to, id));
234 } 235 }
235 } 236 }
236 237