Invalidate user after key creation.

This commit is contained in:
lain 2018-02-24 18:23:47 +01:00
parent fb5add56fa
commit a7c3ead9e6
1 changed files with 2 additions and 0 deletions

View File

@ -60,6 +60,8 @@ defmodule Pleroma.Web.WebFinger do
else
{:ok, pem} = Salmon.generate_rsa_pem
info = Map.put(info, "keys", pem)
Cachex.del(:user_cache, "ap_id:#{user.ap_id}")
Cachex.del(:user_cache, "nickname:#{user.nickname}")
Repo.update(Ecto.Changeset.change(user, info: info))
end
end