mark articles with score less than -500 as read on import

This commit is contained in:
Andrew Dolgov 2008-05-17 03:32:43 +01:00
parent e266e7870d
commit 24605713bb
1 changed files with 1 additions and 1 deletions

View File

@ -1156,7 +1156,7 @@
_debug("update_rss_feed: user record not found, creating...");
}
if (!find_article_filter($article_filters, 'catchup')) {
if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) {
$unread = 'true';
$last_read_qpart = 'NULL';
} else {