logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 88ce0e8b24582020276dfc292abbf000211f9479
parent 3ab34048172f9fd99ad106d71b4e7ae5c57ab9e1
Author: Mark Felder <feld@feld.me>
Date:   Thu, 29 Dec 2022 19:42:14 +0000

Fix rel="me"

Cachex for this was not started

Diffstat:

MCHANGELOG.md2++
Mlib/pleroma/application.ex3++-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git 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 @@ -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