fix: status.reblogged signifies if the status is reblogged by the logged in user, not for the current status
This commit is contained in:
parent
4ad09b5ae2
commit
1214d29302
1 changed files with 1 additions and 2 deletions
|
@ -289,8 +289,7 @@ export class NoteConverter {
|
|||
(!isQuote(note) ? reblog?.reblogs_count : note.renoteCount) ?? 0,
|
||||
),
|
||||
favourites_count: reactionCount,
|
||||
reblogged:
|
||||
isReblogged || reblog.then((reblog) => !!(reblog && !isQuote(note))),
|
||||
reblogged: isReblogged,
|
||||
favourited: isFavorited,
|
||||
muted: isMuted,
|
||||
sensitive: files.then((files) =>
|
||||
|
|
Loading…
Reference in a new issue