pump.io: Mirroring looked for the wrong date. Thanks to sazius for finding this.

This commit is contained in:
Michael Vogel 2014-05-15 23:20:11 +02:00
parent 3ebfe081ba
commit a43f2041d3
1 changed files with 3 additions and 3 deletions

View File

@ -678,11 +678,11 @@ function pumpio_fetchtimeline(&$a, $uid) {
if (count($posts)) {
foreach ($posts as $post) {
if ($post->generator->published <= $initiallastdate)
if ($post->published <= $initiallastdate)
continue;
if ($lastdate < $post->generator->published)
$lastdate = $post->generator->published;
if ($lastdate < $post->published)
$lastdate = $post->published;
if ($first_time)
continue;