forked from AkkomaGang/akkoma
fix formatting
This commit is contained in:
parent
e394e5943d
commit
bc3c30430e
1 changed files with 5 additions and 2 deletions
|
@ -13,9 +13,12 @@ def user_fetcher(username_or_email) do
|
|||
:ok,
|
||||
cond do
|
||||
# First, try logging in as if it was a name
|
||||
user = Repo.get_by(User, %{nickname: username_or_email}) -> user
|
||||
user = Repo.get_by(User, %{nickname: username_or_email}) ->
|
||||
user
|
||||
|
||||
# If we get nil, we try using it as an email
|
||||
user = Repo.get_by(User, %{email: username_or_email}) -> user
|
||||
user = Repo.get_by(User, %{email: username_or_email}) ->
|
||||
user
|
||||
end
|
||||
}
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue