diff options
author | Jordan Bracco <href@random.sh> | 2022-12-20 02:32:12 +0000 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2022-12-20 19:29:41 +0100 |
commit | 9aecb2bf2c4210d8b6b6976f749902b23ade83d6 (patch) | |
tree | 9547fdefe13f8c7695a8dea389ffd9d4ddbaf83c /lib/plugins/correction.ex | |
parent | Actually do not prefix folders with nola_ refs T77 (diff) |
IRC.PubSub -> Nola.PubSub, refs T77
Diffstat (limited to 'lib/plugins/correction.ex')
-rw-r--r-- | lib/plugins/correction.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/plugins/correction.ex b/lib/plugins/correction.ex index 03968c8..067f468 100644 --- a/lib/plugins/correction.ex +++ b/lib/plugins/correction.ex @@ -11,8 +11,8 @@ defmodule Nola.Plugins.Correction do end def init(_) do - {:ok, _} = Registry.register(IRC.PubSub, "messages", [plugin: __MODULE__]) - {:ok, _} = Registry.register(IRC.PubSub, "triggers", [plugin: __MODULE__]) + {:ok, _} = Registry.register(Nola.PubSub, "messages", [plugin: __MODULE__]) + {:ok, _} = Registry.register(Nola.PubSub, "triggers", [plugin: __MODULE__]) {:ok, %{}} end |