upd: on no quote return false instead of null

This commit is contained in:
Mar0xy 2023-09-25 15:57:50 +02:00
parent 141edc3b3a
commit b0b96f00b9
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828
2 changed files with 2 additions and 2 deletions

View file

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

View file

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