aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/feedController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controllers/feedController.php')
-rw-r--r--app/Controllers/feedController.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php
index 730c13a23..c8d534545 100644
--- a/app/Controllers/feedController.php
+++ b/app/Controllers/feedController.php
@@ -583,7 +583,8 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
continue;
}
- $entry->applyFilterActions($titlesAsRead);
+ // NB: Do not mark updated articles as read based on their title, as the duplicate title maybe be from the same article.
+ $entry->applyFilterActions([]);
if ($readWhenSameTitleInFeed > 0) {
$titlesAsRead[$entry->title()] = true;
}