diff --git a/Iceshrimp.Backend/Core/Federation/ActivityPub/ActivityDeliverService.cs b/Iceshrimp.Backend/Core/Federation/ActivityPub/ActivityDeliverService.cs index 9b3c984c..cd048fb7 100644 --- a/Iceshrimp.Backend/Core/Federation/ActivityPub/ActivityDeliverService.cs +++ b/Iceshrimp.Backend/Core/Federation/ActivityPub/ActivityDeliverService.cs @@ -76,9 +76,9 @@ public class ActivityDeliverService( .ToListAsync(); if (note.Visibility == Note.NoteVisibility.Specified) - await DeliverToAsync(activity, note.User, recipients.ToArray()); + await DeliverToAsync(activity, actor, recipients.ToArray()); else - await DeliverToFollowersAsync(activity, note.User, recipients); + await DeliverToFollowersAsync(activity, actor, recipients); } public async Task DeliverToAsync(ASActivity activity, User actor, string recipientInbox)