fix relationship data for Mastodon API (resolves #714)
This commit is contained in:
parent
5a1d1394d4
commit
bd95e8a555
7 changed files with 39 additions and 14 deletions
|
|
@ -227,13 +227,14 @@ namespace MisskeyAPI {
|
|||
blocking: r.isBlocking,
|
||||
blocked_by: r.isBlocked,
|
||||
muting: r.isMuted,
|
||||
muting_notifications: false,
|
||||
muting_notifications: r.isMuted,
|
||||
requested: r.hasPendingFollowRequestFromYou,
|
||||
domain_blocking: false,
|
||||
showing_reblogs: true,
|
||||
requested_by: r.hasPendingFollowRequestToYou,
|
||||
domain_blocking: r.isInstanceMuted ?? false,
|
||||
showing_reblogs: !r.isRenoteMuted,
|
||||
endorsed: false,
|
||||
notifying: false,
|
||||
note: null
|
||||
notifying: !r.isMuted,
|
||||
note: r.memo ?? '',
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue