summaryrefslogtreecommitdiff
path: root/lib/web/controllers/irc_controller.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/web/controllers/irc_controller.ex')
-rw-r--r--lib/web/controllers/irc_controller.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/web/controllers/irc_controller.ex b/lib/web/controllers/irc_controller.ex
index d6114e6..441cbe7 100644
--- a/lib/web/controllers/irc_controller.ex
+++ b/lib/web/controllers/irc_controller.ex
@@ -17,7 +17,7 @@ defmodule NolaWeb.IrcController do
members = cond do
network && channel -> Enum.map(IRC.UserTrack.channel(network, channel), fn(tuple) -> IRC.UserTrack.User.from_tuple(tuple) end)
true ->
- IRC.Membership.of_account(conn.assigns.account)
+ Nola.Membership.of_account(conn.assigns.account)
end
render conn, "index.html", network: network, commands: commands, channel: channel, members: members
end