Merge pull request #7842 from annando/fix-fatal
Fix fatal errors, caused by an empty "verb"
This commit is contained in:
		
				commit
				
					
						db65601828
					
				
			
		
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -402,7 +402,7 @@ function visible_activity($item) {
 | 
			
		|||
	/** @var Activity $activity */
 | 
			
		||||
	$activity = BaseObject::getClass(Activity::class);
 | 
			
		||||
 | 
			
		||||
	if ($activity->isHidden($item['verb'])) {
 | 
			
		||||
	if (empty($item['verb']) || $activity->isHidden($item['verb'])) {
 | 
			
		||||
		return false;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1034,7 +1034,7 @@ function builtin_activity_puller($item, &$conv_responses) {
 | 
			
		|||
		/** @var Activity $activity */
 | 
			
		||||
		$activity = BaseObject::getClass(Activity::class);
 | 
			
		||||
 | 
			
		||||
		if ($activity->match($item['verb'], $verb) && ($item['id'] != $item['parent'])) {
 | 
			
		||||
		if (!empty($item['verb']) && $activity->match($item['verb'], $verb) && ($item['id'] != $item['parent'])) {
 | 
			
		||||
			$author = ['uid' => 0, 'id' => $item['author-id'],
 | 
			
		||||
				'network' => $item['author-network'], 'url' => $item['author-link']];
 | 
			
		||||
			$url = Contact::magicLinkByContact($author);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue