mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 02:03:40 +00:00
[twitter] Fix undefined object notice
This commit is contained in:
parent
73e045a99d
commit
5e6fcb1f95
1 changed files with 1 additions and 1 deletions
|
@ -1549,7 +1549,7 @@ function twitter_fetchparentposts(App $a, $uid, $post, TwitterOAuth $connection,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($post)) {
|
if (empty($post)) {
|
||||||
Logger::log("twitter_fetchparentposts: Can't fetch post " . $parameters->id, Logger::DEBUG);
|
Logger::log("twitter_fetchparentposts: Can't fetch post " . $parameters['id'], Logger::DEBUG);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue