diff options
author | r <r@freesoftwareextremist.com> | 2020-01-05 18:55:37 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2020-01-05 18:55:37 +0000 |
commit | ca711e62ec85a763f1b17c9443125579a0f0be7a (patch) | |
tree | 869bc00d3acc7638f08e32ca7494c74a9841ef21 /mastodon | |
parent | 50e58c4e010959955286e4250ebacb3b93f8c525 (diff) | |
download | bloat-ca711e62ec85a763f1b17c9443125579a0f0be7a.tar.gz bloat-ca711e62ec85a763f1b17c9443125579a0f0be7a.zip |
Fix duplicate status ids
Use retweeted_by_id to focus target tweet
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/status.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mastodon/status.go b/mastodon/status.go index 6646c60..06fdd20 100644 --- a/mastodon/status.go +++ b/mastodon/status.go @@ -56,6 +56,7 @@ type Status struct { ReplyNumber int `json:"reply_number"` ThreadInNewTab bool `json:"thread_in_new_tab"` MaskNSFW bool `json:"mask_nsfw"` + RetweetedByID string `json:"retweeted_by_id"` } // Context hold information for mastodon context. |