jappixmini: fix names
This commit is contained in:
parent
07a1e7a2aa
commit
efb62aec52
|
@ -162,17 +162,17 @@ function jappixmini_manage_roster(contacts, contacts_hash, autoapprove, autosubs
|
||||||
// ignore accounts that are not in the list
|
// ignore accounts that are not in the list
|
||||||
if (contacts[xid]===undefined) return;
|
if (contacts[xid]===undefined) return;
|
||||||
|
|
||||||
// add to Friendica group if necessary
|
// add to Friendica group or change name if necessary
|
||||||
var groups = [];
|
var groups = [];
|
||||||
node.find('group').each(function() {
|
node.find('group').each(function() {
|
||||||
var group_text = $(this).text();
|
var group_text = $(this).text();
|
||||||
if (group_text) groups.push(group_text);
|
if (group_text) groups.push(group_text);
|
||||||
});
|
});
|
||||||
|
|
||||||
if ($.inArray("Friendica", groups)==-1) {
|
if ($.inArray("Friendica", groups)==-1 || name!=contacts[xid]) {
|
||||||
groups.push("Friendica");
|
groups.push("Friendica");
|
||||||
sendRoster(xid, null, null, groups);
|
sendRoster(xid, null, contacts[xid], groups);
|
||||||
console.log("Added "+xid+" to Friendica group.");
|
console.log("Added "+xid+" to Friendica group and set name to "+contacts[xid]+".");
|
||||||
}
|
}
|
||||||
|
|
||||||
// authorize if necessary
|
// authorize if necessary
|
||||||
|
|
Loading…
Reference in New Issue
Block a user