mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
* src/ejabberd_router.erl: Bugfix
SVN Revision: 297
This commit is contained in:
parent
36afafb9e6
commit
301cc280aa
@ -1,3 +1,7 @@
|
||||
2005-03-12 Alexey Shchepin <alexey@sevcom.net>
|
||||
|
||||
* src/ejabberd_router.erl: Bugfix
|
||||
|
||||
2005-01-14 Alexey Shchepin <alexey@sevcom.net>
|
||||
|
||||
* src/mod_irc/mod_irc_connection.erl: Added filtering of quit
|
||||
|
@ -40,6 +40,11 @@ start_link() ->
|
||||
|
||||
init() ->
|
||||
mnesia:subscribe({table, route, simple}),
|
||||
lists:foreach(
|
||||
fun(Pid) ->
|
||||
erlang:monitor(process, Pid)
|
||||
end,
|
||||
mnesia:dirty_select(route, [{{route, '_', '$1', '_'}, [], ['$1']}])),
|
||||
loop().
|
||||
|
||||
loop() ->
|
||||
|
Loading…
Reference in New Issue
Block a user