diff options
author | r <r@freesoftwareextremist.com> | 2024-06-17 11:41:02 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2024-06-17 11:41:02 +0000 |
commit | 61c166b79570219a515bb3b8dd344a403708b371 (patch) | |
tree | 81d2ebb603d86d3b7c3580de46a25c5acc4af224 /mastodon | |
parent | ce1680dfd050990d8f3e484b92eb0db350bc3f2c (diff) | |
download | bloat-61c166b79570219a515bb3b8dd344a403708b371.tar.gz bloat-61c166b79570219a515bb3b8dd344a403708b371.zip |
Show quoted posts
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 { |