Commit b85b29bb authored by JC Brand's avatar JC Brand

vcard: Bugfix. 'FN' may not be defined.

parent e6492e28
...@@ -95,11 +95,11 @@ ...@@ -95,11 +95,11 @@
img = _.get(vcard.querySelector('BINVAL'), 'textContent'), img = _.get(vcard.querySelector('BINVAL'), 'textContent'),
url = _.get(vcard.querySelector('URL'), 'textContent'); url = _.get(vcard.querySelector('URL'), 'textContent');
let fullname = vcard.querySelector('FN').textContent; let fullname = _.get(vcard.querySelector('FN'), 'textContent');
if (jid) { if (jid) {
const contact = _converse.roster.get(jid); const contact = _converse.roster.get(jid);
if (contact) { if (contact) {
fullname = _.isEmpty(fullname) ? _.get(contact, 'fullname', jid) : fullname; fullname = _.isUndefined(fullname) ? _.get(contact, 'fullname', jid) : fullname;
contact.save({ contact.save({
'fullname': fullname, 'fullname': fullname,
'image_type': img_type, 'image_type': img_type,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment