do not mark post as updated when comments count changes
This commit is contained in:
parent
4a4a15e679
commit
cdaa144301
|
@ -1289,6 +1289,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
$post_needs_update = false;
|
$post_needs_update = false;
|
||||||
|
$update_insignificant = false;
|
||||||
|
|
||||||
if ($content_hash != $orig_content_hash) {
|
if ($content_hash != $orig_content_hash) {
|
||||||
// print "<!-- [$entry_title] $content_hash vs $orig_content_hash -->";
|
// print "<!-- [$entry_title] $content_hash vs $orig_content_hash -->";
|
||||||
|
@ -1301,6 +1302,7 @@
|
||||||
|
|
||||||
if ($orig_num_comments != $num_comments) {
|
if ($orig_num_comments != $num_comments) {
|
||||||
$post_needs_update = true;
|
$post_needs_update = true;
|
||||||
|
$update_insignificant = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// this doesn't seem to be very reliable
|
// this doesn't seem to be very reliable
|
||||||
|
@ -1326,14 +1328,16 @@
|
||||||
num_comments = '$num_comments'
|
num_comments = '$num_comments'
|
||||||
WHERE id = '$ref_id'");
|
WHERE id = '$ref_id'");
|
||||||
|
|
||||||
if ($mark_unread_on_update) {
|
if (!$update_insignificant) {
|
||||||
db_query($link, "UPDATE ttrss_user_entries
|
if ($mark_unread_on_update) {
|
||||||
SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
|
db_query($link, "UPDATE ttrss_user_entries
|
||||||
} else if ($update_on_checksum_change) {
|
SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
|
||||||
db_query($link, "UPDATE ttrss_user_entries
|
} else if ($update_on_checksum_change) {
|
||||||
SET last_read = null WHERE ref_id = '$ref_id' AND unread = false");
|
db_query($link, "UPDATE ttrss_user_entries
|
||||||
|
SET last_read = null WHERE ref_id = '$ref_id'
|
||||||
|
AND unread = false");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue