parent
8823a6c1a1
commit
a9a476a0d5
@ -75,6 +75,20 @@ props:
|
|||||||
ja-JP: "この投稿に対する自分の<a href='/docs/api/reactions'>リアクション</a>"
|
ja-JP: "この投稿に対する自分の<a href='/docs/api/reactions'>リアクション</a>"
|
||||||
en-US: "The your <a href='/docs/api/reactions'>reaction</a> of this note"
|
en-US: "The your <a href='/docs/api/reactions'>reaction</a> of this note"
|
||||||
|
|
||||||
|
renoteCount:
|
||||||
|
type: "number"
|
||||||
|
optional: false
|
||||||
|
desc:
|
||||||
|
ja-JP: "この投稿がRenoteされた数"
|
||||||
|
en-US: "The number of renotes for this post"
|
||||||
|
|
||||||
|
repliesCount:
|
||||||
|
type: "number"
|
||||||
|
optional: false
|
||||||
|
desc:
|
||||||
|
ja-JP: "この投稿に返信された数"
|
||||||
|
en-US: "The number of replies to this post"
|
||||||
|
|
||||||
reactionCounts:
|
reactionCounts:
|
||||||
type: "object"
|
type: "object"
|
||||||
optional: false
|
optional: false
|
||||||
|
@ -273,6 +273,11 @@ export const pack = async (
|
|||||||
// Populate files
|
// Populate files
|
||||||
_note.files = packFileMany(_note.fileIds || []);
|
_note.files = packFileMany(_note.fileIds || []);
|
||||||
|
|
||||||
|
// Some counts
|
||||||
|
_note.renoteCount = _note.renoteCount || 0;
|
||||||
|
_note.repliesCount = _note.repliesCount || 0;
|
||||||
|
_note.reactionCounts = _note.reactionCounts || {};
|
||||||
|
|
||||||
// 後方互換性のため
|
// 後方互換性のため
|
||||||
_note.mediaIds = _note.fileIds;
|
_note.mediaIds = _note.fileIds;
|
||||||
_note.media = _note.files;
|
_note.media = _note.files;
|
||||||
|
Loading…
Reference in New Issue
Block a user