カスタム絵文字リアクションでないものは絵文字クエリをしないように (#5693)
* カスタム絵文字リアクションの絵文字がNoteに添付されないのを修正 * ねんのため * 記述順 * カスタム絵文字リアクションでないものは絵文字クエリをしないように
This commit is contained in:
		@@ -139,9 +139,11 @@ export class NoteRepository extends Repository<Note> {
 | 
			
		||||
				});
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			reactionNames = reactionNames?.filter(x => x.match(/^:[^:]+:$/)).map(x => x.replace(/:/g, ''));
 | 
			
		||||
 | 
			
		||||
			if (reactionNames?.length > 0) {
 | 
			
		||||
				where.push({
 | 
			
		||||
					name: In(reactionNames.map(x => x.replace(/:/g, ''))),
 | 
			
		||||
					name: In(reactionNames),
 | 
			
		||||
					host: null
 | 
			
		||||
				});
 | 
			
		||||
			}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user