Don't ask for empty bodies
This commit is contained in:
		
					parent
					
						
							
								5a36c6b6c0
							
						
					
				
			
			
				commit
				
					
						cd070954da
					
				
			
		
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -2043,7 +2043,7 @@ function api_statuses_repeat($type) | |||
| 	$fields = ['uri-id', 'network', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink']; | ||||
| 	$item = Post::selectFirst($fields, ['id' => $id, 'private' => [Item::PUBLIC, Item::UNLISTED]]); | ||||
|   | ||||
| 	if (!empty($item['body'])) { | ||||
| 	if (DBA::isResult($item)) { | ||||
| 		if (in_array($item['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::TWITTER])) { | ||||
| 			if (!Item::performActivity($id, 'announce', local_user())) { | ||||
| 				throw new InternalServerErrorException(); | ||||
|  | @ -2075,7 +2075,7 @@ function api_statuses_repeat($type) | |||
| 			$item_id = item_post($a); | ||||
| 		} | ||||
| 	} else { | ||||
| 		throw new ForbiddenException(!DBA::isResult($item) ? 'not found' : 'empty body'); | ||||
| 		throw new ForbiddenException(); | ||||
| 	} | ||||
| 
 | ||||
| 	// output the post that we just posted.
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue