mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 21:30:33 +02:00
Only consider "active" domains for all purposes (which on the back end means at least one person connected).
This commit is contained in:
parent
d446e1bcf5
commit
cf025072e1
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ Window {
|
||||||
options.page = 1;
|
options.page = 1;
|
||||||
}
|
}
|
||||||
// FIXME: really want places I'm allowed in, not just open ones
|
// FIXME: really want places I'm allowed in, not just open ones
|
||||||
var url = "https://metaverse.highfidelity.com/api/v1/domains/all?open&page=" + options.page + "&users=" + options.minUsers + "-" + options.maxUsers;
|
var url = "https://metaverse.highfidelity.com/api/v1/domains/all?open&active&page=" + options.page + "&users=" + options.minUsers + "-" + options.maxUsers;
|
||||||
getRequest(url, function (error, json) {
|
getRequest(url, function (error, json) {
|
||||||
if (!error && (json.status !== 'success')) {
|
if (!error && (json.status !== 'success')) {
|
||||||
error = new Error("Bad response: " + JSON.stringify(json));
|
error = new Error("Bad response: " + JSON.stringify(json));
|
||||||
|
|
Loading…
Reference in a new issue