Quellcode durchsuchen

add Changelog entry

tags/v1.1.4
William Pitcock vor 5 Jahren
Ursprung
Commit
c4a55e167a
2 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      lib/pleroma/web/common_api/utils.ex

+ 1
- 0
CHANGELOG.md Datei anzeigen

@@ -71,6 +71,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Deps: Updated Ecto to 3.0.7
- Don't ship finmoji by default, they can be installed as an emoji pack
- Hide deactivated users and their statuses
- Posts which are marked sensitive or tagged nsfw no longer have link previews.

### Fixed
- Added an FTS index on objects. Running `vacuum analyze` and setting a larger `work_mem` is recommended.


+ 1
- 1
lib/pleroma/web/common_api/utils.ex Datei anzeigen

@@ -232,7 +232,7 @@ defmodule Pleroma.Web.CommonAPI.Utils do
"cc" => cc,
"content" => content_html,
"summary" => cw,
"sensitive" => sensitive,
"sensitive" => !Enum.member?(["false", "False", "0", false], sensitive),
"context" => context,
"attachment" => attachments,
"actor" => actor,


Laden…
Abbrechen
Speichern