Explorar o código

Only reply to direct Ping activities.

default %!s(int64=2) %!d(string=hai) anos
pai
achega
840fde45f1
Modificáronse 1 ficheiros con 6 adicións e 0 borrados
  1. 6 0
      activitypub.c

+ 6 - 0
activitypub.c

@@ -659,6 +659,12 @@ int is_msg_for_me(snac *snac, const xs_dict *c_msg)
         return !xs_is_null(object) && strcmp(snac->actor, object) == 0;
     }
 
+    /* only accept Ping directed to us */
+    if (xs_match(type, "Ping")) {
+        char *dest = xs_dict_get(c_msg, "to");
+        return !xs_is_null(dest) && strcmp(snac->actor, dest) == 0;
+    }
+
     /* if it's not a Create or Update, allow as is */
     if (!xs_match(type, "Create|Update")) {
         return 1;