mod_groups: Check for existence of roster[false] before clearing version (thanks Flo)

This commit is contained in:
Matthew Wild 2010-05-26 13:38:00 +01:00
parent a48703aa3b
commit fb63a1dd60

View file

@ -67,7 +67,9 @@ function remove_virtual_contacts(username, host, datastore, data)
new_roster[jid] = contact;
end
end
new_roster[false].version = nil; -- Version is void
if new_roster[false] then
new_roster[false].version = nil; -- Version is void
end
return username, host, datastore, new_roster;
end