From: Zach Copley Date: Tue, 3 Nov 2009 17:55:35 +0000 (-0800) Subject: Don't try to pull up designs for non-existent users X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d03a57853e06310228f7df782dd60068863f4a69;p=quix0rs-gnu-social.git Don't try to pull up designs for non-existent users --- diff --git a/lib/api.php b/lib/api.php index 9bd2083deb..a1236ab7ec 100644 --- a/lib/api.php +++ b/lib/api.php @@ -134,11 +134,20 @@ class ApiAction extends Action $twitter_user['protected'] = false; # not supported by StatusNet yet $twitter_user['followers_count'] = $profile->subscriberCount(); - // Need to pull up the user for some of this - $user = $profile->getUser(); - $design = $user->getDesign(); $defaultDesign = Design::siteDesign(); - if (!$design) $design = $defaultDesign; + $design = null; + $user = $profile->getUser(); + + // Note: some profiles don't have an associated user + + if (!empty($user)) { + $design = $user->getDesign(); + } + + if (empty($design)) { + $design = $defaultDesign; + } + $color = Design::toWebColor(empty($design->backgroundcolor) ? $defaultDesign->backgroundcolor : $design->backgroundcolor); $twitter_user['profile_background_color'] = ($color == null) ? '' : '#'.$color->hexValue(); $color = Design::toWebColor(empty($design->textcolor) ? $defaultDesign->textcolor : $design->textcolor);