mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
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:
parent
117d917dfa
commit
24a8ca2e01
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue