From 27ff9ce43b13b2bb612f27a202a6a153480c16c0 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Thu, 25 May 2023 20:32:12 -0500 Subject: [PATCH] Remove sorting in feed-manip --- src/lib/api/feed-manip.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib/api/feed-manip.ts b/src/lib/api/feed-manip.ts index 7f31fb29..035b3609 100644 --- a/src/lib/api/feed-manip.ts +++ b/src/lib/api/feed-manip.ts @@ -143,9 +143,6 @@ export class FeedTuner { } } - // sort by slice roots' timestamps - slices.sort((a, b) => b.ts.localeCompare(a.ts)) - for (const slice of slices) { for (const item of slice.items) { this.seenUris.add(item.post.uri)