Skip to content

Commit

Permalink
mod_muc_rtbl: Fix call to gen_server:stop (#4260)
Browse files Browse the repository at this point in the history
  • Loading branch information
badlop committed Jul 22, 2024
1 parent bc7c8e3 commit 10d1704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mod_muc_rtbl.erl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ start(Host, _Opts) ->
gen_server:start({local, gen_mod:get_module_proc(Host, ?MODULE)}, ?MODULE, [Host], []).

stop(Host) ->
gen_server:stop({local, gen_mod:get_module_proc(Host, ?MODULE)}).
gen_server:stop(gen_mod:get_module_proc(Host, ?MODULE)).

init([Host]) ->
ejabberd_mnesia:create(?MODULE, muc_rtbl,
Expand Down

0 comments on commit 10d1704

Please sign in to comment.