Fix note count update.

This commit is contained in:
lain 2018-11-18 18:52:21 +01:00
parent 6f90ceb2ed
commit d5af41b577
3 changed files with 11 additions and 5 deletions

View File

@ -440,11 +440,13 @@ defmodule Pleroma.User do
note_count = Repo.one(note_count_query)
new_info = Map.put(user.info, "note_count", note_count)
info_cng = User.Info.set_note_count(user.info, note_count)
cs = info_changeset(user, %{info: new_info})
cng =
change(user)
|> put_embed(:info, info_cng)
update_and_set_cache(cs)
update_and_set_cache(cng)
end
def update_follower_count(%User{} = user) do

View File

@ -27,6 +27,10 @@ defmodule Pleroma.User.Info do
end
def add_to_note_count(info, number) do
set_note_count(info, info.note_count + number)
end
def set_note_count(info, number) do
params = %{note_count: Enum.max([0, number])}
info

View File

@ -311,11 +311,11 @@ defmodule Pleroma.UserTest do
user = User.get_by_ap_id(note.data["actor"])
assert user.info["note_count"] == nil
assert user.info.note_count == 0
{:ok, user} = User.update_note_count(user)
assert user.info["note_count"] == 1
assert user.info.note_count == 1
end
test "it increases the info->note_count property" do