summaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/activitypub.c b/activitypub.c
index d699fee..5fb60ba 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -3377,6 +3377,12 @@ void process_queue_item(xs_dict *q_item)
3377 rss_poll_hashtags(); 3377 rss_poll_hashtags();
3378 } 3378 }
3379 else 3379 else
3380 if (strcmp(type, "fsck") == 0) {
3381 srv_log(xs_fmt("started deferred data integrity check"));
3382 data_fsck();
3383 srv_log(xs_fmt("finished deferred data integrity check"));
3384 }
3385 else
3380 srv_log(xs_fmt("unexpected q_item type '%s'", type)); 3386 srv_log(xs_fmt("unexpected q_item type '%s'", type));
3381} 3387}
3382 3388