Browse Source

Don't call enqueue_actor_refresh() with a NULL user.

default 1 year ago
parent
commit
262302a3af
1 changed files with 1 additions and 1 deletions
  1. 1 1
      activitypub.c

+ 1 - 1
activitypub.c

@@ -129,7 +129,7 @@ int actor_request(snac *user, const char *actor, xs_dict **data)
 
     if (status == 205) {
         /* stale actor: use it, but request a refresh */
-        if (!xs_startswith(actor, srv_baseurl))
+        if (user && !xs_startswith(actor, srv_baseurl))
             enqueue_actor_refresh(user, actor);
     }
     else