mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-27 14:28:53 +09:00
fix(sw): 유니코드 이모지로 리액션한 경우에도 리액션 알림에 :
가 표시됨
This commit is contained in:
parent
a4f85fd9ea
commit
b84bda3963
@ -31,6 +31,9 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2024xx](CHANGE
|
||||
### Client
|
||||
- Fix: 타임라인 노트의 리액션 뷰어에 리모트 서버의 커스텀 이모지가 표시되지 않음
|
||||
|
||||
### Server
|
||||
- Fix: 유니코드 이모지로 리액션한 경우에도 리액션 알림에 `:`가 표시됨
|
||||
|
||||
---
|
||||
|
||||
## 4.8.0
|
||||
|
@ -164,7 +164,7 @@ async function composeNotification(data: PushNotificationDataMap[keyof PushNotif
|
||||
const tag = `reaction:${data.body.note.id}`;
|
||||
return [t('_notification.youGotReact', { name: getUserName(data.body.user) }), {
|
||||
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
||||
body: `:${ reaction }:` + '\n' + data.body.note.text ?? '',
|
||||
body: (reaction.startsWith(':') ? `:${ reaction }:` : `${ reaction }`) + '\n' + data.body.note.text ?? '',
|
||||
icon: data.body.user.avatarUrl,
|
||||
tag,
|
||||
badge,
|
||||
|
Loading…
Reference in New Issue
Block a user