diff --git a/Iceshrimp.Backend/Core/Extensions/QueryableTimelineExtensions.cs b/Iceshrimp.Backend/Core/Extensions/QueryableTimelineExtensions.cs index f7aa77e8..6aacb0b3 100644 --- a/Iceshrimp.Backend/Core/Extensions/QueryableTimelineExtensions.cs +++ b/Iceshrimp.Backend/Core/Extensions/QueryableTimelineExtensions.cs @@ -44,7 +44,7 @@ public static class QueryableTimelineExtensions return await db.Notes .Where(p => p.CreatedAt > latestNote.CreatedAt - TimeSpan.FromDays(7)) .FollowingAndOwnLowFreq(user, db) - //.Select(p => new { }) + .OrderByDescending(p => p.Id) .Take(Cutoff + 1) .CountAsync(); }