Merge pull request #681 from annando/notices-again

Notices again
This commit is contained in:
Tobias Diekershoff 2018-08-02 07:23:23 +02:00 committed by GitHub
commit 20e42c09b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 3 deletions

View File

@ -341,10 +341,13 @@ function fromgplus_handleattachments($a, $uid, $item, $displaytext, $shared) {
if ($images["full"] != "")
$pagedata["images"][0]["src"] = $images["full"];
$quote = trim(fromgplus_html2bbcode($attachment->content));
if (!empty($attachment->content)) {
$quote = trim(fromgplus_html2bbcode($attachment->content));
}
if ($quote != "")
if (!empty($quote)) {
$pagedata["text"] = $quote;
}
// Add Keywords to page link
$data = parseurl_getsiteinfo_cached($pagedata["url"], true);

View File

@ -778,6 +778,7 @@ function pumpio_fetchtimeline(App $a, $uid)
$success = $client->CallAPI($url, 'GET', [], ['FailOnAccessError'=>true], $user);
} else {
$success = false;
$user = [];
}
if (!$success) {
@ -1386,6 +1387,10 @@ function pumpio_getallusers(App &$a, $uid)
$success = false;
}
if (empty($users)) {
return;
}
if ($users->totalItems > count($users->items)) {
$url = 'https://'.$hostname.'/api/user/'.$username.'/following?count='.$users->totalItems;

View File

@ -443,7 +443,7 @@ function tumblr_send(App $a, array &$b) {
"<p>".$params['caption']."</p>";
}
if (empty($params['caption'])) {
if (empty($params['caption']) && !empty($siteinfo["description"])) {
$params['caption'] = BBCode::convert("[quote]" . $siteinfo["description"] . "[/quote]", false, 4);
}

View File

@ -1514,6 +1514,11 @@ function twitter_fetchparentposts(App $a, $uid, $post, TwitterOAuth $connection,
break;
}
if (empty($post->id_str)) {
logger("twitter_fetchparentposts: This is not a post " . json_encode($post), LOGGER_DEBUG);
break;
}
if (DBA::exists('item', ['uri' => 'twitter::' . $post->id_str, 'uid' => $uid])) {
break;
}