aboutsummaryrefslogtreecommitdiff
path: root/mastodon/status.go
diff options
context:
space:
mode:
Diffstat (limited to 'mastodon/status.go')
-rw-r--r--mastodon/status.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/mastodon/status.go b/mastodon/status.go
index c36b6cb..edd88e9 100644
--- a/mastodon/status.go
+++ b/mastodon/status.go
@@ -266,6 +266,9 @@ func (c *Client) PostStatus(ctx context.Context, toot *Toot) (*Status, error) {
if toot.SpoilerText != "" {
params.Set("spoiler_text", toot.SpoilerText)
}
+ if toot.ContentType != "" {
+ params.Set("content_type", toot.ContentType)
+ }
var status Status
err := c.doAPI(ctx, http.MethodPost, "/api/v1/statuses", params, &status, nil)