diff --git a/pleroma-comments.lua b/pleroma-comments.lua index ce1fbeb..01a40eb 100644 --- a/pleroma-comments.lua +++ b/pleroma-comments.lua @@ -115,7 +115,7 @@ function write_comments(pleroma_posts, instance, show_avatars) if #attachments < 1 then return "" end - local media_list = {"

images attached:

    "} + local media_list = {"

    media attached:

      "} local item = "
    1. $mime$
    2. " for _, v in pairs(attachments) do local vars = { @@ -127,7 +127,6 @@ function write_comments(pleroma_posts, instance, show_avatars) table.insert(media_list, foo) end table.insert(media_list, "
    ") - printTable(media_list) return table.concat(media_list, "\n") end