···273273 public class NoteRendererDto
274274 {
275275 public List<AccountEntity>? Accounts;
276276- public List<MentionEntity>? Mentions;
277276 public List<AttachmentEntity>? Attachments;
278278- public List<PollEntity>? Polls;
279279- public List<string>? LikedNotes;
280277 public List<string>? BookmarkedNotes;
281281- public List<string>? PinnedNotes;
282282- public List<string>? Renotes;
283278 public List<EmojiEntity>? Emoji;
279279+ public List<string>? LikedNotes;
280280+ public List<MentionEntity>? Mentions;
281281+ public List<string>? PinnedNotes;
282282+ public List<PollEntity>? Polls;
284283 public List<ReactionEntity>? Reactions;
284284+ public List<string>? Renotes;
285285286286 public bool Source;
287287 }
···9090 if (user == null) throw AuthFetchException.NotFound("Delete activity actor is unknown");
9191 key = await db.UserPublickeys.Include(p => p.User)
9292 .FirstOrDefaultAsync(p => p.User == user, ct);
9393-9393+9494 // If the key is still null here, we have a data consistency issue and need to update the key manually
9595 key ??= await userSvc.UpdateUserPublicKeyAsync(user).WaitAsync(ct);
9696 }
···191191 }
192192193193 /// <remarks>
194194- /// This needs to be called before SaveChangesAsync on create & after on delete
194194+ /// This needs to be called before SaveChangesAsync on create & after on delete
195195 /// </remarks>
196196 private async Task UpdateNoteCountersAsync(Note note, bool create)
197197 {