forked from AkkomaGang/akkoma
Fix for elixir 1.7.
This commit is contained in:
parent
701f5df45c
commit
ffd9ad1f0c
1 changed files with 2 additions and 2 deletions
|
@ -134,8 +134,8 @@ def register_user(params) do
|
||||||
}
|
}
|
||||||
|
|
||||||
# no need to query DB if registration is open
|
# no need to query DB if registration is open
|
||||||
unless @registrations_open || is_nil(tokenString) do
|
token = unless @registrations_open || is_nil(tokenString) do
|
||||||
token = Repo.get_by(UserInviteToken, %{token: tokenString})
|
Repo.get_by(UserInviteToken, %{token: tokenString})
|
||||||
end
|
end
|
||||||
|
|
||||||
cond do
|
cond do
|
||||||
|
|
Loading…
Reference in a new issue