Browse Source

Limited users can announce our own posts.

default 1 year ago
parent
commit
135e690a27
1 changed files with 4 additions and 4 deletions
  1. 4 4
      activitypub.c

+ 4 - 4
activitypub.c

@@ -1558,15 +1558,15 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
     }
     else
     if (strcmp(type, "Announce") == 0) { /** **/
-        if (is_limited(snac, actor))
+        if (xs_type(object) == XSTYPE_DICT)
+            object = xs_dict_get(object, "id");
+
+        if (is_limited(snac, actor) && !xs_startswith(object, snac->actor))
             snac_log(snac, xs_fmt("dropped 'Announce' from limited actor %s", actor));
         else {
             xs *a_msg = NULL;
             xs *wrk   = NULL;
 
-            if (xs_type(object) == XSTYPE_DICT)
-                object = xs_dict_get(object, "id");
-
             timeline_request(snac, &object, &wrk, 0);
 
             if (valid_status(object_get(object, &a_msg))) {