Handle empty terms / tags.
[akkoma] / lib / pleroma / web / common_api / common_api.ex
index a865cd143470799c38d87e4d2d70b9d0e5dfae81..32a8a08c71a3df50f3eee0af35bb94fa4975523f 100644 (file)
@@ -59,9 +59,10 @@ 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.update_note_count(user)
+      User.increase_note_count(user)
       res
     end
   end