diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-10-31 19:44:36 +0100 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-10-31 19:44:36 +0100 |
commit | e014cc6ed8f98e20f5d64f1e666582c62de6321d (patch) | |
tree | e6035eab501a95227732ddd9359d56448cdaf6e9 /lib | |
parent | c877583a4fc872410b9d0202e7092b17666ba409 (diff) | |
download | pleroma-e014cc6ed8f98e20f5d64f1e666582c62de6321d.tar.gz |
Allow using cws in mastodon api.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/common_api/common_api.ex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pleroma/web/common_api/common_api.ex b/lib/pleroma/web/common_api/common_api.ex index c9822dc2d..32a8a08c7 100644 --- a/lib/pleroma/web/common_api/common_api.ex +++ b/lib/pleroma/web/common_api/common_api.ex @@ -59,7 +59,8 @@ defmodule Pleroma.Web.CommonAPI do tags <- Formatter.parse_tags(status), content_html <- make_content_html(status, mentions, attachments, tags), context <- make_context(inReplyTo), - object <- make_note_data(user.ap_id, to, context, content_html, attachments, inReplyTo, tags) do + cw <- data["spoiler_text"], + object <- make_note_data(user.ap_id, to, context, content_html, attachments, inReplyTo, tags, cw) do res = ActivityPub.create(to, user, context, object) User.increase_note_count(user) res |