diff options
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/status.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mastodon/status.go b/mastodon/status.go index 20f74a5..d009a7f 100644 --- a/mastodon/status.go +++ b/mastodon/status.go @@ -13,7 +13,10 @@ import ( ) type StatusPleroma struct { - InReplyToAccountAcct string `json:"in_reply_to_account_acct"` + InReplyToAccountAcct string `json:"in_reply_to_account_acct"` + Quote *Status `json:"quote"` + QuoteID string `json:"quote_id"` + QuoteVisible bool `json:"quote_visible"` } type ReplyInfo struct { |