1
0
Fork 0
mirror of https://git.friendi.ca/friendica/friendica-addons.git synced 2025-07-25 05:51:46 +00:00

Merge pull request from annando/master

twitter/statusnet mirroring: misspelled variable
This commit is contained in:
friendica 2013-01-07 16:14:20 -08:00
commit 830b1e3ddc
2 changed files with 2 additions and 2 deletions
statusnet
twitter

View file

@ -812,7 +812,7 @@ function statusnet_fetchtimeline($a, $uid) {
if ($post->id > $lastid) if ($post->id > $lastid)
$lastid = $post->id; $lastid = $post->id;
if ($firsttime) if ($first_time)
continue; continue;
if (is_object($post->retweeted_status)) if (is_object($post->retweeted_status))

View file

@ -616,7 +616,7 @@ function twitter_fetchtimeline($a, $uid) {
if ($post->id_str > $lastid) if ($post->id_str > $lastid)
$lastid = $post->id_str; $lastid = $post->id_str;
if ($firsttime) if ($first_time)
continue; continue;
if (!strpos($post->source, $application_name)) { if (!strpos($post->source, $application_name)) {