all domains, not just the 'active' ones, which turns out to be defined as

having at least one person in it.
This commit is contained in:
howard-stearns 2016-07-15 11:41:00 -07:00
parent e974bad8f0
commit 8faa961c8d

View file

@ -244,7 +244,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&active&page=" + options.page + "&users=" + options.minUsers + "-" + options.maxUsers;
var url = "https://metaverse.highfidelity.com/api/v1/domains/all?open&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));