diff options
author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2021-01-31 20:37:33 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2021-01-31 20:37:33 +0300 |
commit | 6fd4163ab60be07b1a20ac8911e105ddca8e2095 (patch) | |
tree | 22b081e568a924b7cd3a534973b513839050dba4 /config | |
parent | 9948ff3356f9e9e214584207a53eba614c73383c (diff) | |
download | pleroma-6fd4163ab60be07b1a20ac8911e105ddca8e2095.tar.gz |
[#3213] ActivityPub: implemented subqueries-based hashtags filtering, removed aggregation-based hashtags filtering.
Diffstat (limited to 'config')
-rw-r--r-- | config/description.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/description.exs b/config/description.exs index 147c1930c..ead541724 100644 --- a/config/description.exs +++ b/config/description.exs @@ -940,7 +940,7 @@ config :pleroma, :config_description, [ key: :improved_hashtag_timeline, type: :keyword, description: - "If `true` / `:prefer_aggregation`, hashtags table and selected strategy will be used for hashtags timeline. When `false`, object-embedded hashtags will be used (slower). Is auto-set to `true` (unless overridden) when HashtagsTableMigrator completes." + "If `true`, hashtags will be fetched from `hashtags` table for hashtags timeline. When `false`, object-embedded hashtags will be used (slower). Is auto-set to `true` (unless overridden) when HashtagsTableMigrator completes." } ] }, |