diff options
author | href <href@random.sh> | 2021-09-03 04:04:21 +0200 |
---|---|---|
committer | href <href@random.sh> | 2021-09-03 04:04:21 +0200 |
commit | 5399fc818cf821c75f9f19fd00bf7905ba7fe7e3 (patch) | |
tree | 00408724f9778cc7323b1459782a762626d39b6a /lib/lsg_web/controllers/irc_auth_sse_controller.ex | |
parent | assets.. (diff) |
various fixes, web client wip, pubsub events
Diffstat (limited to 'lib/lsg_web/controllers/irc_auth_sse_controller.ex')
-rw-r--r-- | lib/lsg_web/controllers/irc_auth_sse_controller.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lsg_web/controllers/irc_auth_sse_controller.ex b/lib/lsg_web/controllers/irc_auth_sse_controller.ex index c39a866..f370d97 100644 --- a/lib/lsg_web/controllers/irc_auth_sse_controller.ex +++ b/lib/lsg_web/controllers/irc_auth_sse_controller.ex @@ -26,7 +26,7 @@ defmodule LSGWeb.IrcAuthSseController do def subscribe(conn) do :timer.send_interval(@ping_interval, {:event, :ping}) :timer.send_after(@expire_delay, {:event, :expire}) - {:ok, _} = Registry.register(IRC.PubSub, "message:private", []) + {:ok, _} = Registry.register(IRC.PubSub, "messages:private", []) conn end |