Skip to content
Snippets Groups Projects
Unverified Commit e184c1cd authored by Xeltica's avatar Xeltica Committed by GitHub
Browse files

カスタム絵文字リアクションがプレビューされない不具合を修正 fix #6272 (#6273)

* カスタム絵文字リアクションがプレビューされない不具合を修正

* add comments
parent e0e4b437
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,11 @@ export default define(meta, async (ps, user) => {
} as DeepPartial<NoteReaction>;
if (ps.type) {
query.reaction = ps.type;
// ローカルリアクションはホスト名が . とされているが
// DB 上ではそうではないので、必要に応じて変換
const suffix = '@.:';
const type = ps.type.endsWith(suffix) ? ps.type.slice(0, ps.type.length - suffix.length) + ':' : ps.type;
query.reaction = type;
}
const reactions = await NoteReactions.find({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment