diff options
author | r <r@freesoftwareextremist.com> | 2020-06-05 06:27:59 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2020-06-05 06:28:50 +0000 |
commit | eb3bc15da9617cf119d1c16365ec9e0c90a7549f (patch) | |
tree | a64778f95d8b1118e4158396b4d8d4b1ae10aaa7 /mastodon | |
parent | b5ca78a2e6efa8becc561639e8e9cdf0ab5797df (diff) | |
download | bloat-eb3bc15da9617cf119d1c16365ec9e0c90a7549f.tar.gz bloat-eb3bc15da9617cf119d1c16365ec9e0c90a7549f.zip |
Show status numbers
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/status.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mastodon/status.go b/mastodon/status.go index b4f57ae..7a29b99 100644 --- a/mastodon/status.go +++ b/mastodon/status.go @@ -52,8 +52,8 @@ type Status struct { // Custom fields Pleroma StatusPleroma `json:"pleroma"` ShowReplies bool `json:"show_replies"` - ReplyMap map[string][]ReplyInfo `json:"reply_map"` - ReplyNumber int `json:"reply_number"` + IDReplies map[string][]ReplyInfo `json:"id_replies"` + IDNumbers map[string]int `json:"id_numbers"` RetweetedByID string `json:"retweeted_by_id"` } |