diff options
| author | 2023-08-03 21:57:25 +0200 | |
|---|---|---|
| committer | 2023-08-03 21:57:25 +0200 | |
| commit | 6ee73b5fcafd24c021e36b35803381b96b450f23 (patch) | |
| tree | 0f4b7ae852af7f5bc95a70963a2df5865ad8e14e /app/Controllers/feedController.php | |
| parent | c49c29a561e73d791c7ea1df84c661e052b46781 (diff) | |
Revert auto mark as read same titles for existing articles (#5561)
Partial revert of https://github.com/FreshRSS/FreshRSS/pull/5505
We should not apply the auto mark as read rule based on existing titles for updated articles, because the match would most of the time be on that same article's title.
Diffstat (limited to 'app/Controllers/feedController.php')
| -rw-r--r-- | app/Controllers/feedController.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index a17e596c7..ea336811c 100644 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -487,11 +487,6 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController { Minz_ExtensionManager::callHook('entry_auto_unread', $entry, 'updated_article'); } - $entry->applyFilterActions($titlesAsRead); - if ($readWhenSameTitleInFeed > 0) { - $titlesAsRead[$entry->title()] = true; - } - $entry = Minz_ExtensionManager::callHook('entry_before_insert', $entry); if (!($entry instanceof FreshRSS_Entry)) { // An extension has returned a null value, there is nothing to insert. |
