diff --git a/fromgplus/fromgplus.php b/fromgplus/fromgplus.php index 959ad1f7..ac433526 100644 --- a/fromgplus/fromgplus.php +++ b/fromgplus/fromgplus.php @@ -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); diff --git a/pumpio/pumpio.php b/pumpio/pumpio.php index 4431cf4c..3bc03efa 100644 --- a/pumpio/pumpio.php +++ b/pumpio/pumpio.php @@ -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; diff --git a/tumblr/tumblr.php b/tumblr/tumblr.php index 86a90737..dc3d9db1 100644 --- a/tumblr/tumblr.php +++ b/tumblr/tumblr.php @@ -443,7 +443,7 @@ function tumblr_send(App $a, array &$b) { "

".$params['caption']."

"; } - if (empty($params['caption'])) { + if (empty($params['caption']) && !empty($siteinfo["description"])) { $params['caption'] = BBCode::convert("[quote]" . $siteinfo["description"] . "[/quote]", false, 4); } diff --git a/twitter/twitter.php b/twitter/twitter.php index 8ac6197b..a130a1cd 100644 --- a/twitter/twitter.php +++ b/twitter/twitter.php @@ -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; }