diff -r 700ea94e1769 -r cc0aa9470775 plugins/mod_pep.lua --- 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