logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://anongit.hacktivis.me/git/pleroma.git/
commit: d65f768b59649de5ed5e76d7dd8248c76fd81a9f
parent c9f9ec04c8b7c24b47acb3f5a00f596b699c2c82
Author: Mint <mint@plagu.ee>
Date:   Thu, 21 Nov 2024 02:14:55 +0300

Meilisearch: stop attempting to index posts with nil date

Diffstat:

Mlib/pleroma/search/meilisearch.ex1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/lib/pleroma/search/meilisearch.ex b/lib/pleroma/search/meilisearch.ex @@ -122,6 +122,7 @@ defmodule Pleroma.Search.Meilisearch do # Only index public or unlisted Notes if not is_nil(object) and object.data["type"] == "Note" and not is_nil(object.data["content"]) and + not is_nil(object.data["published"]) and (Pleroma.Constants.as_public() in object.data["to"] or Pleroma.Constants.as_public() in object.data["cc"]) and object.data["content"] not in ["", "."] do