forked from friendica/friendica-addons
Merge pull request #564 from annando/twitter-exception
Handle exception when posting pictures to twitter
This commit is contained in:
commit
0dfe67ca3e
|
@ -548,7 +548,7 @@ function twitter_post_hook(App $a, &$b)
|
||||||
|
|
||||||
// and now tweet it :-)
|
// and now tweet it :-)
|
||||||
if (strlen($msg) && ($image != "")) {
|
if (strlen($msg) && ($image != "")) {
|
||||||
$connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
|
try {
|
||||||
$media = $connection->upload('media/upload', ['media' => $image]);
|
$media = $connection->upload('media/upload', ['media' => $image]);
|
||||||
|
|
||||||
$post = ['status' => $msg, 'media_ids' => $media->media_id_string];
|
$post = ['status' => $msg, 'media_ids' => $media->media_id_string];
|
||||||
|
@ -575,6 +575,13 @@ function twitter_post_hook(App $a, &$b)
|
||||||
logger('twitter_post: Update extid ' . $result->id_str . " for post id " . $b['id']);
|
logger('twitter_post: Update extid ' . $result->id_str . " for post id " . $b['id']);
|
||||||
Item::update(['extid' => "twitter::" . $result->id_str, 'body' => $result->text], ['id' => $b['id']]);
|
Item::update(['extid' => "twitter::" . $result->id_str, 'body' => $result->text], ['id' => $b['id']]);
|
||||||
}
|
}
|
||||||
|
} catch (Exception $e) {
|
||||||
|
logger('Exception when trying to send to Twitter: ' . $e->getMessage());
|
||||||
|
|
||||||
|
// Workaround: Remove the picture link so that the post can be reposted without it
|
||||||
|
$msg .= " " . $image;
|
||||||
|
$image = "";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strlen($msg) && ($image == "")) {
|
if (strlen($msg) && ($image == "")) {
|
||||||
|
|
Loading…
Reference in a new issue