Browse Source

On user making, check if we have a user with that uri.

tags/v0.9.9
Roger Braun 7 years ago
parent
commit
d95ac274d6
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      lib/pleroma/web/ostatus/ostatus.ex

+ 6
- 2
lib/pleroma/web/ostatus/ostatus.ex View File

@@ -235,8 +235,12 @@ defmodule Pleroma.Web.OStatus do
info: info,
avatar: info["avatar"]
}
cs = User.remote_user_creation(data)
Repo.insert(cs)
with %User{} = user <- User.get_by_ap_id(data.ap_id) do
{:ok, user}
else _e ->
cs = User.remote_user_creation(data)
Repo.insert(cs)
end
end
end



Loading…
Cancel
Save