martinrotter / rssguard

Feed reader (and podcast player) which supports RSS/ATOM/JSON and many web-based feed services.
GNU General Public License v3.0
1.44k stars 120 forks source link

[BUG]: Show unread/important articles should apply to time related filters #1443

Open Kerobyte opened 3 days ago

Kerobyte commented 3 days ago

Brief description of the issue

e.g. Show unread articles + Show articles in last 48 hours

Shows all articles in last 48 hours.

How to reproduce the bug?

Enable show unread articles filter Enable show articles in last 48 hours

What was the expected result?

Show unread articles in last 48 hours.

What actually happened?

Shows all articles in last 48 hours.

Debug log

-

Operating system and version

martinrotter commented 3 days ago

Yes, those filters are combined with LOGICAL OR operator. Meaning if atleast one of selected conditions is met, article will show.

What you request is to make filters work in LOGICAL AND fashion -> show article only if all conditions are met. You are the first user to request this.

This sub-feature could maybe be added, anyway quality PRs are welcomed.