mod_pep: Fixed a nil access (thanks Zash).

Sun, 28 Nov 2010 12:58:54 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Sun, 28 Nov 2010 12:58:54 +0500
changeset 3666
44c4789d6e17
parent 3665
98b55c3a3deb
child 3667
5c39dce29eaf

mod_pep: Fixed a nil access (thanks Zash).

plugins/mod_pep.lua file | annotate | diff | comparison | revisions
--- a/plugins/mod_pep.lua	Sun Nov 28 07:56:08 2010 +0500
+++ b/plugins/mod_pep.lua	Sun Nov 28 12:58:54 2010 +0500
@@ -235,7 +235,7 @@
 			end
 			hash_map[ver] = notify; -- update hash map
 			if self then
-				for jid, item in pairs(origin.roster) do -- for all interested contacts
+				for jid, item in pairs(session.roster) do -- for all interested contacts
 					if item.subscription == "both" or item.subscription == "from" then
 						if not recipients[jid] then recipients[jid] = {}; end
 						recipients[jid][contact] = notify;

mercurial