mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-23 04:33:50 +01:00
カスタム絵文字リアクションでないものは絵文字クエリをしないように (#5693)
* カスタム絵文字リアクションの絵文字がNoteに添付されないのを修正 * ねんのため * 記述順 * カスタム絵文字リアクションでないものは絵文字クエリをしないように
This commit is contained in:
parent
2e4030b6c5
commit
ddda674cd9
@ -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) {
|
if (reactionNames?.length > 0) {
|
||||||
where.push({
|
where.push({
|
||||||
name: In(reactionNames.map(x => x.replace(/:/g, ''))),
|
name: In(reactionNames),
|
||||||
host: null
|
host: null
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user