1
0

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
2 changed files with 2 additions and 2 deletions
+1 -1
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
}
+1 -1
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
}
}