Merge pull request #622 from MrPetovan/bug/fix-php72-notice-twitter

Bug fix php72 notice twitter
This commit is contained in:
Tobias Diekershoff 2018-06-16 16:12:32 +02:00 committed by GitHub
commit 00e32f743c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -75,7 +75,6 @@ use Friendica\Model\Contact;
use Friendica\Model\Group;
use Friendica\Model\Item;
use Friendica\Model\ItemContent;
use Friendica\Model\Photo;
use Friendica\Model\Queue;
use Friendica\Model\User;
use Friendica\Object\Image;
@ -1562,7 +1561,7 @@ function twitter_checknotification(App $a, $uid, $own_id, $top_item, $postarray)
}
}
function twitter_fetchparentposts(App $a, $uid, $post, $connection, $self, $own_id)
function twitter_fetchparentposts(App $a, $uid, $post, TwitterOAuth $connection, $self, $own_id)
{
logger("twitter_fetchparentposts: Fetching for user " . $uid . " and post " . $post->id_str, LOGGER_DEBUG);
@ -1578,7 +1577,7 @@ function twitter_fetchparentposts(App $a, $uid, $post, $connection, $self, $own_
break;
}
if (!count($post)) {
if (empty($post)) {
logger("twitter_fetchparentposts: Can't fetch post " . $parameters->id, LOGGER_DEBUG);
break;
}