mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 05:37:22 +02:00
fix for ozan's domain
This commit is contained in:
parent
27057190ce
commit
f981f21aa4
1 changed files with 1 additions and 1 deletions
|
@ -339,7 +339,7 @@
|
||||||
element.empty();
|
element.empty();
|
||||||
for (var i = 0; i < data.users.length; i++) {
|
for (var i = 0; i < data.users.length; i++) {
|
||||||
// Display users who aren't in a domain differently
|
// Display users who aren't in a domain differently
|
||||||
if (typeof data.users[i].location.root.name === "undefined" || data.users[i].location.root.name === null) {
|
if (typeof data.users[i].location.root === "undefined" || typeof data.users[i].location.root.name === "undefined") {
|
||||||
console.log(data.users[i].username + "is online but not in a domain");
|
console.log(data.users[i].username + "is online but not in a domain");
|
||||||
$("#dev-div").append("<p>" + data.users[i].username + "is online but not in a domain</p>");
|
$("#dev-div").append("<p>" + data.users[i].username + "is online but not in a domain</p>");
|
||||||
$("<li></li>", {
|
$("<li></li>", {
|
||||||
|
|
Loading…
Reference in a new issue