Handle empty terms / tags.
[akkoma] / lib / pleroma / web / common_api / common_api.ex
index 4abf36876c9f29cc2ab09ce57778b9ba039ba745..32a8a08c71a3df50f3eee0af35bb94fa4975523f 100644 (file)
@@ -56,12 +56,13 @@ defmodule Pleroma.Web.CommonAPI do
          mentions <- Formatter.parse_mentions(status),
          inReplyTo <- get_replied_to_activity(data["in_reply_to_status_id"]),
          to <- to_for_user_and_mentions(user, mentions, inReplyTo),
-         content_html <- make_content_html(status, mentions, attachments),
-         context <- make_context(inReplyTo),
          tags <- Formatter.parse_tags(status),
-         object <- make_note_data(user.ap_id, to, context, content_html, attachments, inReplyTo, tags) do
+         content_html <- make_content_html(status, mentions, attachments, tags),
+         context <- make_context(inReplyTo),
+         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.update_note_count(user)
+      User.increase_note_count(user)
       res
     end
   end