diff options
Diffstat (limited to 'src/filters.cc')
-rw-r--r-- | src/filters.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filters.cc b/src/filters.cc index ab7d4b74..c7c49907 100644 --- a/src/filters.cc +++ b/src/filters.cc @@ -390,8 +390,8 @@ void related_posts::flush() void changed_value_posts::flush() { - if (last_post && last_post->date() <= report.terminus) { - output_revaluation(last_post, report.terminus); + if (last_post && last_post->date() <= report.terminus.date()) { + output_revaluation(last_post, report.terminus.date()); last_post = NULL; } item_handler<post_t>::flush(); |