[twitter] Fix Undefined property: stdClass::$media_id_string notice #751

Merged
MrPetovan merged 1 commits from bug/twitter-fix-media_id_string-notice into develop 2018-10-14 17:43:12 +02:00
1 changed files with 5 additions and 1 deletions

View File

@ -591,7 +591,11 @@ function twitter_post_hook(App $a, array &$b)
unlink($tempfile);
$post['media_ids'] = $media->media_id_string;
if (isset($media->media_id_string)) {
$post['media_ids'] = $media->media_id_string;
} else {
throw new Exception('Failed upload of ' . $image);
}
} catch (Exception $e) {
logger('Exception when trying to send to Twitter: ' . $e->getMessage());