summaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
authorGravatar default2023-04-14 19:17:16 +0200
committerGravatar default2023-04-14 19:17:16 +0200
commitbd21d144de18bf67facef287705e34ba030b46d8 (patch)
tree6297a76d751bc93d3be414b473e2470c27b022e6 /activitypub.c
parentUpdated RELEASE_NOTES. (diff)
downloadsnac2-bd21d144de18bf67facef287705e34ba030b46d8.tar.gz
snac2-bd21d144de18bf67facef287705e34ba030b46d8.tar.xz
snac2-bd21d144de18bf67facef287705e34ba030b46d8.zip
New function timeline_touch().
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c
index bf9ce67..98baf8b 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -1147,9 +1147,12 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
1147 else 1147 else
1148 snac_debug(snac, 1, xs_fmt("process_message type '%s' ignored", type)); 1148 snac_debug(snac, 1, xs_fmt("process_message type '%s' ignored", type));
1149 1149
1150 if (do_notify) 1150 if (do_notify) {
1151 notify(snac, type, utype, actor, msg); 1151 notify(snac, type, utype, actor, msg);
1152 1152
1153 timeline_touch(snac);
1154 }
1155
1153 return 1; 1156 return 1;
1154} 1157}
1155 1158