mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-19 01:43:41 +00:00
Notices in twitter removed (#689)
This commit is contained in:
parent
52981604d3
commit
eae3579c88
1 changed files with 1 additions and 1 deletions
|
@ -1509,7 +1509,7 @@ function twitter_fetchparentposts(App $a, $uid, $post, TwitterOAuth $connection,
|
|||
|
||||
$posts = [];
|
||||
|
||||
while ($post->in_reply_to_status_id_str != "") {
|
||||
while (!empty($post->in_reply_to_status_id_str)) {
|
||||
$parameters = ["trim_user" => false, "tweet_mode" => "extended", "id" => $post->in_reply_to_status_id_str];
|
||||
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue