forked from friendica/friendica-addons
Merge pull request #152 from tobiasd/pump_small_fix
array_reverse in line 1233 sometimes got no array as 1st arg
This commit is contained in:
commit
99b75283e7
|
@ -1230,13 +1230,16 @@ function pumpio_fetchinbox(&$a, $uid) {
|
||||||
$url .= '?since='.urlencode($last_id);
|
$url .= '?since='.urlencode($last_id);
|
||||||
|
|
||||||
$success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $user);
|
$success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $user);
|
||||||
$posts = array_reverse($user->items);
|
|
||||||
|
|
||||||
if (count($posts))
|
if ($user->items) {
|
||||||
foreach ($posts as $post) {
|
$posts = array_reverse($user->items);
|
||||||
$last_id = $post->id;
|
|
||||||
pumpio_dopost($a, $client, $uid, $self, $post, $own_id);
|
if (count($posts))
|
||||||
}
|
foreach ($posts as $post) {
|
||||||
|
$last_id = $post->id;
|
||||||
|
pumpio_dopost($a, $client, $uid, $self, $post, $own_id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
set_pconfig($uid,'pumpio','last_id', $last_id);
|
set_pconfig($uid,'pumpio','last_id', $last_id);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue