diff --git a/src/Content/OEmbed.php b/src/Content/OEmbed.php index a1fe4f3064..0c05b01086 100644 --- a/src/Content/OEmbed.php +++ b/src/Content/OEmbed.php @@ -152,7 +152,7 @@ class OEmbed $oembed->description = $data['text']; } - if (is_array($data['images'])) { + if (!empty($data['images'])) { $oembed->thumbnail_url = $data['images'][0]['src']; $oembed->thumbnail_width = $data['images'][0]['width']; $oembed->thumbnail_height = $data['images'][0]['height']; diff --git a/src/Model/Profile.php b/src/Model/Profile.php index 15ad83ed85..5180a3ea2e 100644 --- a/src/Model/Profile.php +++ b/src/Model/Profile.php @@ -116,6 +116,10 @@ class Profile return; } + if (empty($pdata)) { + $pdata = ['uid' => 0, 'profile_uid' => 0, 'is-default' => false,'name' => $nickname]; + } + // fetch user tags if this isn't the default profile if (!$pdata['is-default']) {