Software /
code /
prosody
Diff
plugins/mod_pep.lua @ 1451:cc0aa9470775
mod_pep: Fixed boolean indexing error while casting all messages for a user
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Thu, 02 Jul 2009 00:43:32 +0500 |
parent | 1440:d3117a6ad1bf |
child | 1457:4723bd466a54 |
line wrap: on
line diff
--- a/plugins/mod_pep.lua Mon Jun 29 14:13:49 2009 +0100 +++ b/plugins/mod_pep.lua Thu Jul 02 00:43:32 2009 +0500 @@ -54,8 +54,9 @@ local d = data[user]; local notify = recipients[user] and recipients[user][recipient]; if d and notify then - for node, message in pairs(notify) do - if d[node] then + for node in pairs(notify) do + local message = d[node]; + if message then message.attr.to = recipient; session.send(message); end