forked from YokaiRick/akkoma
Fixes Christmas Special
This commit is contained in:
parent
541a4cbbb6
commit
42f30d67fa
1 changed files with 6 additions and 2 deletions
|
@ -13,8 +13,12 @@ def run([]) do
|
||||||
users = Repo.all(q)
|
users = Repo.all(q)
|
||||||
|
|
||||||
Enum.each(users, fn(user) ->
|
Enum.each(users, fn(user) ->
|
||||||
IO.puts("Fetching #{user.nickname}")
|
try do
|
||||||
Pleroma.Web.ActivityPub.Transmogrifier.upgrade_user_from_ap_id(user.ap_id, false)
|
IO.puts("Fetching #{user.nickname}")
|
||||||
|
Pleroma.Web.ActivityPub.Transmogrifier.upgrade_user_from_ap_id(user.ap_id, false)
|
||||||
|
rescue
|
||||||
|
e -> IO.inspect(e)
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue