diff options
author | Mark Felder <feld@feld.me> | 2022-12-29 19:42:14 +0000 |
---|---|---|
committer | tusooa <tusooa@kazv.moe> | 2023-02-20 12:24:32 -0500 |
commit | 88ce0e8b24582020276dfc292abbf000211f9479 (patch) | |
tree | f3873bf9e099e9262718a99f66f423c1762f5bff | |
parent | 3ab34048172f9fd99ad106d71b4e7ae5c57ab9e1 (diff) | |
download | pleroma-88ce0e8b24582020276dfc292abbf000211f9479.tar.gz pleroma-88ce0e8b24582020276dfc292abbf000211f9479.zip |
Fix rel="me"
Cachex for this was not started
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | lib/pleroma/application.ex | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 18da66e8b..c15546608 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Fixed +- rel="me" was missing its cache + ### Removed ## 2.5.0 - 2022-12-23 diff --git a/lib/pleroma/application.ex b/lib/pleroma/application.ex index 1c1db8c10..e68a3c57e 100644 --- a/lib/pleroma/application.ex +++ b/lib/pleroma/application.ex @@ -209,7 +209,8 @@ defmodule Pleroma.Application do build_cachex("chat_message_id_idempotency_key", expiration: chat_message_id_idempotency_key_expiration(), limit: 500_000 - ) + ), + build_cachex("rel_me", limit: 2500) ] end |