summaryrefslogtreecommitdiff
path: root/packages/backend/src/core/GlobalEventService.ts
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2024-09-24 18:29:02 +0900
committerGitHub <noreply@github.com>2024-09-24 18:29:02 +0900
commit6a1a2bef43af929f6def408428bd734ea2bff5c6 (patch)
tree65e843100f1d004c9f7986fd38319924f4cb6a65 /packages/backend/src/core/GlobalEventService.ts
parent:art: (diff)
downloadsharkey-6a1a2bef43af929f6def408428bd734ea2bff5c6.tar.gz
sharkey-6a1a2bef43af929f6def408428bd734ea2bff5c6.tar.bz2
sharkey-6a1a2bef43af929f6def408428bd734ea2bff5c6.zip
fix(backend): RBTの修正 (#14621)
* fix(backend): 絵文字の変換処理が不十分なのを修正 * enhance: リアクションバッファリングが無効になったら即bakeするように * attempt to fix test * fix
Diffstat (limited to 'packages/backend/src/core/GlobalEventService.ts')
-rw-r--r--packages/backend/src/core/GlobalEventService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/core/GlobalEventService.ts b/packages/backend/src/core/GlobalEventService.ts
index 87aa70713e..03646ff566 100644
--- a/packages/backend/src/core/GlobalEventService.ts
+++ b/packages/backend/src/core/GlobalEventService.ts
@@ -241,7 +241,7 @@ export interface InternalEventTypes {
avatarDecorationCreated: MiAvatarDecoration;
avatarDecorationDeleted: MiAvatarDecoration;
avatarDecorationUpdated: MiAvatarDecoration;
- metaUpdated: MiMeta;
+ metaUpdated: { before?: MiMeta; after: MiMeta; };
followChannel: { userId: MiUser['id']; channelId: MiChannel['id']; };
unfollowChannel: { userId: MiUser['id']; channelId: MiChannel['id']; };
updateUserProfile: MiUserProfile;