diff options
| author | 2019-03-02 21:06:56 +0100 | |
|---|---|---|
| committer | 2019-03-02 21:06:56 +0100 | |
| commit | 2856f7b8b47abcddf20589e19be1f5b98caa1ae3 (patch) | |
| tree | 69f5a5072e4967779b167115a535972c45f23307 /app | |
| parent | 7d76acad04f1ac31829611c90a8941104f74b6a4 (diff) | |
Revert wrong boolean
Diffstat (limited to 'app')
| -rwxr-xr-x | app/Controllers/feedController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index 57c2e392d..d5ae235ad 100755 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -357,7 +357,7 @@ class FreshRSS_feed_Controller extends Minz_ActionController { $feed->attributes('mark_updated_article_unread') ) : FreshRSS_Context::$user_conf->mark_updated_article_unread; $needFeedCacheRefresh = $mark_updated_article_unread; - $entry->_isRead($mark_updated_article_unread ? true : null); //Change is_read according to policy. + $entry->_isRead($mark_updated_article_unread ? false : null); //Change is_read according to policy. $entry = Minz_ExtensionManager::callHook('entry_before_insert', $entry); if ($entry === null) { |
