Skip to content

Commit 940680f

Browse files
committed
Flip inverted boolean check
1 parent 6b54dfa commit 940680f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## Unreleased
88

9+
## 0.4.4 - 2025-02-11
10+
### Fixed
11+
* Flip inverted boolean check that filtered out unseen articles instead of seen articles
12+
913
## 0.4.3 - 2025-02-11
1014
### Changed
1115
* When no feed items are stored in the database for a particular feed, fall back to using the old time-based detection method

walrss/internal/rss/processor.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ func filterFeedContent(st *state.State, interval time.Duration, feed *gofeed.Fee
316316

317317
} else {
318318
for _, item := range feed.Items {
319-
if _, found := knownItems[item.GUID]; found {
319+
if _, found := knownItems[item.GUID]; !found {
320320
if item.PublishedParsed == nil {
321321
item.PublishedParsed = &time.Time{}
322322
}

0 commit comments

Comments
 (0)