From: Michael Vogel Date: Mon, 11 Jul 2016 04:44:36 +0000 (+0200) Subject: Twitter: Prevent posting loops X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=cc0669a7454306728a838258bd36c02387246c2d;hp=3f6ed00ded44ecec946f718296615e330893e5b5;p=friendica-addons.git Twitter: Prevent posting loops --- diff --git a/twitter/twitter.php b/twitter/twitter.php index 07fa58ad..8f023dfe 100644 --- a/twitter/twitter.php +++ b/twitter/twitter.php @@ -771,8 +771,10 @@ function twitter_fetchtimeline($a, $uid) { if (count($posts)) { foreach ($posts as $post) { - if ($post->id_str > $lastid) + if ($post->id_str > $lastid) { $lastid = $post->id_str; + set_pconfig($uid, 'twitter', 'lastid', $lastid); + } if ($first_time) continue; @@ -1698,8 +1700,10 @@ function twitter_fetchhometimeline($a, $uid) { if (count($posts)) { foreach ($posts as $post) { - if ($post->id_str > $lastid) + if ($post->id_str > $lastid) { $lastid = $post->id_str; + set_pconfig($uid, 'twitter', 'lasthometimelineid', $lastid); + } if ($first_time) continue;