The jappixmini addon #48

Merged
Leberwurscht merged 42 commits from master into master 2012-04-20 08:48:13 +02:00
Showing only changes of commit b7b3021053 - Show all commits

View file

@ -164,13 +164,17 @@ function jappixmini_manage_roster(contacts, contacts_hash, autoapprove, autosubs
// add to Friendica group or change name if necessary
var groups = [];
var group_missing = false;
node.find('group').each(function() {
var group_text = $(this).text();
if (group_text) groups.push(group_text);
});
if ($.inArray("Friendica", groups)==-1 || name!=contacts[xid]) {
if ($.inArray("Friendica", groups)==-1) {
group_missing = true;
groups.push("Friendica");
}
if (group_missing || name!=contacts[xid]) {
sendRoster(xid, null, contacts[xid], groups);
console.log("Added "+xid+" to Friendica group and set name to "+contacts[xid]+".");
}