summaryrefslogtreecommitdiff
path: root/lib/nola/auth_token.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/nola/auth_token.ex')
-rw-r--r--lib/nola/auth_token.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/nola/auth_token.ex b/lib/nola/auth_token.ex
index d125ea4..9760ec7 100644
--- a/lib/nola/auth_token.ex
+++ b/lib/nola/auth_token.ex
@@ -50,7 +50,7 @@ defmodule Nola.AuthToken do
end
def handle_call({:new, account, perks}, _, state) do
- id = IRC.UserTrack.Id.token()
+ id = Nola.UserTrack.Id.token()
expire = DateTime.utc_now()
|> DateTime.add(15*60, :second)
{:reply, {:ok, id}, Map.put(state, id, {account, expire, perks})}