EmojiReaction => EmojiReact (#5877)

This commit is contained in:
MeiMei 2020-02-07 21:37:24 +09:00 committed by GitHub
parent bb4c35d481
commit 7be6501571
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -34,6 +34,7 @@ export default async (actor: IRemoteUser, activity: IUndo): Promise<void> => {
break; break;
case 'Like': case 'Like':
case 'EmojiReaction': case 'EmojiReaction':
case 'EmojiReact':
undoLike(actor, object as ILike); undoLike(actor, object as ILike);
break; break;
case 'Announce': case 'Announce':

View File

@ -171,7 +171,7 @@ export interface IRemove extends IActivity {
} }
export interface ILike extends IActivity { export interface ILike extends IActivity {
type: 'Like' | 'EmojiReaction'; type: 'Like' | 'EmojiReaction' | 'EmojiReact';
_misskey_reaction?: string; _misskey_reaction?: string;
} }
@ -193,6 +193,6 @@ export const isAccept = (object: IObject): object is IAccept => object.type ===
export const isReject = (object: IObject): object is IReject => object.type === 'Reject'; export const isReject = (object: IObject): object is IReject => object.type === 'Reject';
export const isAdd = (object: IObject): object is IAdd => object.type === 'Add'; export const isAdd = (object: IObject): object is IAdd => object.type === 'Add';
export const isRemove = (object: IObject): object is IRemove => object.type === 'Remove'; export const isRemove = (object: IObject): object is IRemove => object.type === 'Remove';
export const isLike = (object: IObject): object is ILike => object.type === 'Like' || object.type === 'EmojiReaction'; export const isLike = (object: IObject): object is ILike => object.type === 'Like' || object.type === 'EmojiReaction' || object.type === 'EmojiReact';
export const isAnnounce = (object: IObject): object is IAnnounce => object.type === 'Announce'; export const isAnnounce = (object: IObject): object is IAnnounce => object.type === 'Announce';
export const isBlock = (object: IObject): object is IBlock => object.type === 'Block'; export const isBlock = (object: IObject): object is IBlock => object.type === 'Block';