forked from GNUsocial/gnu-social
		
	Merge branch 'master' into 'master'
block check can't be done inside the same try-expression as Subscription::getSub… …scription(), since if that throws a NoResultException, the block check will not be done. and if you're blocking someone you are not subscribing to them. See merge request !59
This commit is contained in:
		| @@ -274,11 +274,11 @@ class ApiAction extends Action | ||||
|                 $sub = Subscription::getSubscription($this->scoped, $profile); | ||||
|                 // Notifications on? | ||||
|                 $twitter_user['following'] = true; | ||||
|                 $twitter_user['statusnet_blocking']  = $this->scoped->hasBlocked($profile); | ||||
|                 $twitter_user['notifications'] = ($sub->jabber || $sub->sms); | ||||
|             } catch (NoResultException $e) { | ||||
|                 // well, the values are already false... | ||||
|             } | ||||
|             $twitter_user['statusnet_blocking']  = $this->scoped->hasBlocked($profile);             | ||||
|         } | ||||
|  | ||||
|         if ($get_notice) { | ||||
| @@ -1550,4 +1550,4 @@ class ApiAction extends Action | ||||
|  | ||||
|         return $uri; | ||||
|     } | ||||
| } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user