Check for updateId, not uid

This commit is contained in:
Ekaterina Vaartis 2022-08-27 01:11:50 +03:00
parent 5ac6763238
commit 6256822afd

View file

@ -153,7 +153,7 @@ defmodule Pleroma.Search.Meilisearch do
)
with {:ok, res} <- result,
true <- Map.has_key?(res, "uid") do
true <- Map.has_key?(res, "updateId") do
# Added successfully
:ok
else