Commit 7ff02b28 authored by JC Brand's avatar JC Brand

Bugfix, uninitialized variable.

parent 5fcd754a
...@@ -9,7 +9,8 @@ xmppchat.UI = (function (xmppUI, $, console) { ...@@ -9,7 +9,8 @@ xmppchat.UI = (function (xmppUI, $, console) {
}; };
ob.updateOnPresence = function (jid, status, presence) { ob.updateOnPresence = function (jid, status, presence) {
var user_id, bare_jid, resource, existing_user_element, online_count; var user_id = Strophe.getNodeFromJid(jid),
bare_jid, resource, existing_user_element, online_count;
if (xmppchat.isOwnUser(jid)) { return; } if (xmppchat.isOwnUser(jid)) { return; }
...@@ -29,7 +30,6 @@ xmppchat.UI = (function (xmppUI, $, console) { ...@@ -29,7 +30,6 @@ xmppchat.UI = (function (xmppUI, $, console) {
if (existing_user_element.length > 0) { if (existing_user_element.length > 0) {
existing_user_element.attr('class', status); existing_user_element.attr('class', status);
} else { } else {
user_id = Strophe.getNodeFromJid(jid);
xmppchat.Presence.getUserInfo(user_id, function (data) { xmppchat.Presence.getUserInfo(user_id, function (data) {
if ($('#online-users-' + user_id).length > 0) { return; } if ($('#online-users-' + user_id).length > 0) { return; }
var li = $('<li></li>').attr('id', 'online-users-'+user_id).attr('data-recipient', jid); var li = $('<li></li>').attr('id', 'online-users-'+user_id).attr('data-recipient', jid);
......
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