diff options
author | r <r@freesoftwareextremist.com> | 2020-01-12 17:16:57 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2020-01-12 17:16:57 +0000 |
commit | 3c6653a77b8951672ea169d175db154495a981fe (patch) | |
tree | 54f27eba5c3dbedcbca5744764eb0d1c1e36ac1b /mastodon | |
parent | 8607f16212c9537751030c717dbfb3454e66ca23 (diff) | |
download | bloat-3c6653a77b8951672ea169d175db154495a981fe.tar.gz bloat-3c6653a77b8951672ea169d175db154495a981fe.zip |
Add dark mode
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 06fdd20..e6e247f 100644 --- a/mastodon/status.go +++ b/mastodon/status.go @@ -57,6 +57,7 @@ type Status struct { ThreadInNewTab bool `json:"thread_in_new_tab"` MaskNSFW bool `json:"mask_nsfw"` RetweetedByID string `json:"retweeted_by_id"` + DarkMode bool `json:"dark_mode"` } // Context hold information for mastodon context. |