diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-09 23:54:54 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-09 23:54:54 +0000 |
commit | 678df8a8dcc33cbd3bb61196053b351609726009 (patch) | |
tree | 124e92485b2ce46d17d93950d47d3cace0b81b7b | |
parent | ee679158ff42dfcad40a84ac92d328543a744586 (diff) | |
parent | b2b866b63d4cdc390498ea43ca54c8590de8ece7 (diff) | |
download | prosody-678df8a8dcc33cbd3bb61196053b351609726009.tar.gz prosody-678df8a8dcc33cbd3bb61196053b351609726009.zip |
Merge from waqas
-rw-r--r-- | core/stanza_router.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 61c2dede..9ae98f1c 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -328,7 +328,7 @@ function core_route_stanza(origin, stanza) t_insert(recipients, session); end end - for _, session in pairs(recipient) do + for _, session in pairs(recipients) do session.send(stanza); end else |