summaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
authorGravatar default2023-03-02 12:38:02 +0100
committerGravatar default2023-03-02 12:38:02 +0100
commit5036cb5e1134d99c967f0de5057801a9b0af96d9 (patch)
treef2bb1aa9cd47ddce5d99c93ee3b518b76986a9e0 /activitypub.c
parentShow a bigger piece of a connection error. (diff)
downloadsnac2-5036cb5e1134d99c967f0de5057801a9b0af96d9.tar.gz
snac2-5036cb5e1134d99c967f0de5057801a9b0af96d9.tar.xz
snac2-5036cb5e1134d99c967f0de5057801a9b0af96d9.zip
Connection jobs are treated as urgent.
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c
index ee31ecd..9c47590 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -1316,7 +1316,7 @@ int process_queue(void)
1316 xs *q_item = dequeue(fn); 1316 xs *q_item = dequeue(fn);
1317 1317
1318 if (q_item != NULL) { 1318 if (q_item != NULL) {
1319 job_post(q_item); 1319 job_post(q_item, 0);
1320 cnt++; 1320 cnt++;
1321 } 1321 }
1322 } 1322 }