diff options
author | default <nobody@localhost> | 2022-11-25 12:50:19 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-11-25 12:50:19 +0100 |
commit | afeec970a38ad91fc00ab50efaf42723c38cefbf (patch) | |
tree | a4ac4fb02e2acf377e104871fef23b73776d513c | |
parent | 4bbebe8e4e4f2a43c4c7d0d193f6bc4a228a461d (diff) |
Also call object_del() on a renewed actor in actor_request().
-rw-r--r-- | activitypub.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activitypub.c b/activitypub.c index f3f15af..17f74e0 100644 --- a/activitypub.c +++ b/activitypub.c @@ -65,6 +65,7 @@ int actor_request(snac *snac, char *actor, d_char **data) if (valid_status(status2)) { /* renew data */ + object_del(actor); status = actor_add(snac, actor, payload); if (data != NULL) { |