diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-01-15 15:03:54 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-15 15:03:54 -0800 |
commit | a7d617c7a616b6f6a8e0db41f02e052d6bd077e8 (patch) | |
tree | b20cc4ad13db4ba3813e791b534731af1dfc652e /src/lib/api/feed/merge.ts | |
parent | 7df0b7ade14cc8015996cb23f052066b7ae3131b (diff) | |
download | voidsky-a7d617c7a616b6f6a8e0db41f02e052d6bd077e8.tar.zst |
Add a new home feed-api wrapper and give a header indicating the fallback behavior (#2534)
* Add a new home feed-api wrapper and give a header indicating the fallback behavior * Sneak in a quick fix: use the correct text color in the delete modal * Use imported constant
Diffstat (limited to 'src/lib/api/feed/merge.ts')
-rw-r--r-- | src/lib/api/feed/merge.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/api/feed/merge.ts b/src/lib/api/feed/merge.ts index 2fef9db87..28bf143cb 100644 --- a/src/lib/api/feed/merge.ts +++ b/src/lib/api/feed/merge.ts @@ -26,7 +26,7 @@ export class MergeFeedAPI implements FeedAPI { reset() { this.following = new MergeFeedSource_Following(this.feedTuners) - this.customFeeds = [] // just empty the array, they will be captured in _fetchNext() + this.customFeeds = [] this.feedCursor = 0 this.itemCursor = 0 this.sampleCursor = 0 |