diff options
| author | 2025-05-28 09:07:19 +0200 | |
|---|---|---|
| committer | 2025-05-28 09:07:19 +0200 | |
| commit | a1369b39c1bd3d2036af12368997648454ca5564 (patch) | |
| tree | fb18610c75bbda7b80b6726ebd80373fedd606c9 /activitypub.c | |
| parent | Don't prepend a # before a hashtag that is really an URL. (diff) | |
| download | penes-snac2-a1369b39c1bd3d2036af12368997648454ca5564.tar.gz penes-snac2-a1369b39c1bd3d2036af12368997648454ca5564.tar.xz penes-snac2-a1369b39c1bd3d2036af12368997648454ca5564.zip | |
Activated hashtag RSS polling.
Diffstat (limited to 'activitypub.c')
| -rw-r--r-- | activitypub.c | 4 |
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) | |||
| 3050 | } | 3050 | } |
| 3051 | } | 3051 | } |
| 3052 | else | 3052 | else |
| 3053 | if (strcmp(type, "rss_poll") == 0) { | ||
| 3054 | rss_poll_hashtags(); | ||
| 3055 | } | ||
| 3056 | else | ||
| 3053 | srv_log(xs_fmt("unexpected q_item type '%s'", type)); | 3057 | srv_log(xs_fmt("unexpected q_item type '%s'", type)); |
| 3054 | } | 3058 | } |
| 3055 | 3059 | ||