Просмотр исходного кода

Don't be overzealous in avoid notifications for Likes and Announces.

default 2 лет назад
Родитель
Сommit
21400ca13a
1 измененных файлов с 6 добавлено и 6 удалено
  1. 6 6
      activitypub.c

+ 6 - 6
activitypub.c

@@ -1996,12 +1996,12 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
         if (xs_type(object) == XSTYPE_DICT)
             object = xs_dict_get(object, "id");
 
-        if (timeline_admire(snac, object, actor, 1) == 201) {
+        if (timeline_admire(snac, object, actor, 1) == 201)
             snac_log(snac, xs_fmt("new 'Like' %s %s", actor, object));
-            do_notify = 1;
-        }
         else
             snac_log(snac, xs_fmt("repeated 'Like' from %s to %s", actor, object));
+
+        do_notify = 1;
     }
     else
     if (strcmp(type, "Announce") == 0) { /** **/
@@ -2027,13 +2027,13 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
                     xs *who_o = NULL;
 
                     if (valid_status(actor_request(snac, who, &who_o))) {
-                        if (timeline_admire(snac, object, actor, 0) == 201) {
+                        if (timeline_admire(snac, object, actor, 0) == 201)
                             snac_log(snac, xs_fmt("new 'Announce' %s %s", actor, object));
-                            do_notify = 1;
-                        }
                         else
                             snac_log(snac, xs_fmt("repeated 'Announce' from %s to %s",
                                 actor, object));
+
+                        do_notify = 1;
                     }
                     else
                         snac_debug(snac, 1, xs_fmt("dropped 'Announce' on actor request error %s", who));