aboutsummaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
authorgrunfink <grunfink@comam.es>2025-05-28 09:07:19 +0200
committergrunfink <grunfink@comam.es>2025-05-28 09:07:19 +0200
commita1369b39c1bd3d2036af12368997648454ca5564 (patch)
treefb18610c75bbda7b80b6726ebd80373fedd606c9 /activitypub.c
parente2bb8078641f810b019635dd41f3e7ea191c5b52 (diff)
Activated hashtag RSS polling.
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/activitypub.c b/activitypub.c
index 0cc7bcb..2cffeac 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -3050,6 +3050,10 @@ void process_queue_item(xs_dict *q_item)
}
}
else
+ if (strcmp(type, "rss_poll") == 0) {
+ rss_poll_hashtags();
+ }
+ else
srv_log(xs_fmt("unexpected q_item type '%s'", type));
}