all repos

smutok @ 0b1114e8480a2078e28246af54360f5789154f6d

yet another tui rss reader (not abandoned, just paused development)
1 files changed, 3 insertions(+), 4 deletions(-)
fix(sync): get all articles, not only unread
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2025-12-29 19:02:46 +0200
Change ID: tukrykpsrrrsuzxwtqqypslzvkzzypuz
Parent: e1ab4d0
M internal/freshrss/sync.go

@@ -149,10 +149,9 @@ func (f *Syncer) syncUnreadItems(ctx context.Context) error {

slog.Info("syncing unread items") items, err := f.api.StreamContents(ctx, StreamContents{ - StreamID: StateReadingList, - ExcludeTarget: StateRead, - LastModified: f.ot, - N: 1000, + StreamID: StateReadingList, + LastModified: f.ot, + N: 1000, }) if err != nil { return err