mod_groups: Fixes to make compatible with roster versioning - set version to 'true' to indicate that the roster is not being versioned

This commit is contained in:
Matthew Wild 2010-03-22 14:35:02 +00:00
parent 117d917dfa
commit 24a8ca2e01

View file

@ -53,6 +53,10 @@ function inject_roster_contacts(username, host, roster)
import_jids_to_roster(group_name);
end
end
if roster[false] then
roster[false].version = true;
end
end
function remove_virtual_contacts(username, host, datastore, data)
@ -63,6 +67,7 @@ function remove_virtual_contacts(username, host, datastore, data)
new_roster[jid] = contact;
end
end
new_roster[false].version = nil; -- Version is void
return username, host, datastore, new_roster;
end