mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
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:
parent
e974bad8f0
commit
8faa961c8d
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue