mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	Merge pull request #1685 from 2vg/patch-1
fix: when text is null, bug can pass validation.
This commit is contained in:
		
						commit
						726d5a177e
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -140,7 +140,7 @@ module.exports = (params, user: ILocalUser, app: IApp) => new Promise(async (res
 | 
			
		|||
	}
 | 
			
		||||
 | 
			
		||||
	// テキストが無いかつ添付ファイルが無いかつRenoteも無いかつ投票も無かったらエラー
 | 
			
		||||
	if (text === undefined && files === null && renote === null && poll === undefined) {
 | 
			
		||||
	if ((text === undefined || text === null) && files === null && renote === null && poll === undefined) {
 | 
			
		||||
		return rej('text, mediaIds, renoteId or poll is required');
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue