Преглед изворни кода

Use actor_request() again in get_actor_inbox().

This was faster, but some actors not already here (i.e. some
mentions) were not posted.
default пре 3 година
родитељ
комит
58c01be996
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      activitypub.c

+ 3 - 1
activitypub.c

@@ -194,7 +194,7 @@ d_char *get_actor_inbox(snac *snac, char *actor)
     xs *data = NULL;
     char *v = NULL;
 
-    if (valid_status(actor_get(snac, actor, &data))) {
+    if (valid_status(actor_request(snac, actor, &data))) {
         /* try first endpoints/sharedInbox */
         if ((v = xs_dict_get(data, "endpoints")))
             v = xs_dict_get(v, "sharedInbox");
@@ -281,6 +281,8 @@ d_char *inbox_list(snac *snac, char *msg)
             /* add the inbox if it's not already there */
             xs_set_add(&inboxes, inbox);
         }
+        else
+            snac_log(snac, xs_fmt("cannot find inbox for %s", v));
     }
 
     return xs_set_result(&inboxes);