summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/special/spe_player.erl7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/special/spe_player.erl b/src/special/spe_player.erl
index 0d35c7d..2e1b13e 100644
--- a/src/special/spe_player.erl
+++ b/src/special/spe_player.erl
@@ -14,11 +14,8 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-spec reserve_login (binary(), binary()) -> 'ok'.
reserve_login (UsernameLC, EmailLC) ->
- shr_janitor:new(login_db, UsernameLC),
- shr_janitor:new(login_db, EmailLC),
-
- ok = ataxia_client:reserve(login_db, ataxia_security:janitor(), UsernameLC),
- ok = ataxia_client:reserve(login_db, ataxia_security:janitor(), EmailLC),
+ ok = ataxia_client:reserve(login_db, UsernameLC),
+ ok = ataxia_client:reserve(login_db, EmailLC),
ok.