Only consider "active" domains for all purposes (which on the back end means at least one person connected).

This commit is contained in:
Howard Stearns 2016-07-16 09:50:56 -07:00
parent d446e1bcf5
commit cf025072e1

View file

@ -246,7 +246,7 @@ Window {
options.page = 1;
}
// 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) {
if (!error && (json.status !== 'success')) {
error = new Error("Bad response: " + JSON.stringify(json));