summaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
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