25
1
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:
Alexey Shchepin 2005-03-11 23:39:56 +00:00
parent 36afafb9e6
commit 301cc280aa
2 changed files with 9 additions and 0 deletions

View File

@ -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

View File

@ -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() ->