mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 05:03:42 +00:00
SN import from timeline, check if there are posting before the foreach loop
This commit is contained in:
parent
b8c4455d84
commit
8e6d1d8f8b
1 changed files with 4 additions and 2 deletions
|
@ -808,7 +808,8 @@ function statusnet_fetchtimeline($a, $uid) {
|
|||
$items = $connection->get('statuses/user_timeline', $parameters);
|
||||
$posts = array_reverse($items);
|
||||
|
||||
foreach ($posts as $post) {
|
||||
if (count($posts)) {
|
||||
foreach ($posts as $post) {
|
||||
if ($post->id > $lastid)
|
||||
$lastid = $post->id;
|
||||
|
||||
|
@ -852,7 +853,8 @@ function statusnet_fetchtimeline($a, $uid) {
|
|||
require_once('mod/item.php');
|
||||
item_post($a);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
set_pconfig($uid, 'statusnet', 'lastid', $lastid);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue