merge: fix: incorrect type for quote property (!480)

View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/480

Closes #401

Approved-by: dakkar <dakkar@thenautilus.net>
This commit is contained in:
Marie 2024-04-03 21:04:09 +00:00
commit 96b2983862
3 changed files with 3 additions and 3 deletions

View file

@ -278,7 +278,7 @@ export class MastoConverters {
reactions: status.emoji_reactions, reactions: status.emoji_reactions,
emoji_reactions: status.emoji_reactions, emoji_reactions: status.emoji_reactions,
bookmarked: false, bookmarked: false,
quote: isQuote ? await this.convertReblog(status.reblog) : false, quote: isQuote ? await this.convertReblog(status.reblog) : null,
edited_at: note.updatedAt?.toISOString(), edited_at: note.updatedAt?.toISOString(),
}); });
} }

View file

@ -38,7 +38,7 @@ namespace Entity {
language: string | null language: string | null
pinned: boolean | null pinned: boolean | null
emoji_reactions: Array<Reaction> emoji_reactions: Array<Reaction>
quote: Status | boolean quote: Status | boolean | null
bookmarked: boolean bookmarked: boolean
} }

View file

@ -303,7 +303,7 @@ namespace MisskeyAPI {
pinned: null, pinned: null,
emoji_reactions: typeof n.reactions === 'object' ? mapReactions(n.reactions, n.myReaction) : [], emoji_reactions: typeof n.reactions === 'object' ? mapReactions(n.reactions, n.myReaction) : [],
bookmarked: false, bookmarked: false,
quote: n.renote && n.text ? note(n.renote, n.user.host ? n.user.host : host ? host : null) : false quote: n.renote && n.text ? note(n.renote, n.user.host ? n.user.host : host ? host : null) : null
} }
} }