On user making, check if we have a user with that uri.
This commit is contained in:
parent
04544da8f1
commit
d95ac274d6
|
@ -235,8 +235,12 @@ def make_user(uri) do
|
||||||
info: info,
|
info: info,
|
||||||
avatar: info["avatar"]
|
avatar: info["avatar"]
|
||||||
}
|
}
|
||||||
cs = User.remote_user_creation(data)
|
with %User{} = user <- User.get_by_ap_id(data.ap_id) do
|
||||||
Repo.insert(cs)
|
{:ok, user}
|
||||||
|
else _e ->
|
||||||
|
cs = User.remote_user_creation(data)
|
||||||
|
Repo.insert(cs)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue