diff --git a/Iceshrimp.Backend/Controllers/Mastodon/StatusController.cs b/Iceshrimp.Backend/Controllers/Mastodon/StatusController.cs index 09423cff..2026b01f 100644 --- a/Iceshrimp.Backend/Controllers/Mastodon/StatusController.cs +++ b/Iceshrimp.Backend/Controllers/Mastodon/StatusController.cs @@ -104,6 +104,10 @@ public class StatusController( if (!shouldShowContext) return new StatusContext { Ancestors = [], Descendants = [] }; + // Akkoma-FE calls /context on boosts + if (note.IsPureRenote) + return await GetStatusContext(note.RenoteId!); + var ancestors = await db.NoteAncestors(id, maxAncestors) .IncludeCommonProperties() .EnsureVisibleFor(user)