From 8faa961c8dfdb3f8586c73545708250bd6a4bca2 Mon Sep 17 00:00:00 2001 From: howard-stearns Date: Fri, 15 Jul 2016 11:41:00 -0700 Subject: [PATCH] all domains, not just the 'active' ones, which turns out to be defined as having at least one person in it. --- interface/resources/qml/AddressBarDialog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/resources/qml/AddressBarDialog.qml b/interface/resources/qml/AddressBarDialog.qml index bcb55ba568..b9b6e58913 100644 --- a/interface/resources/qml/AddressBarDialog.qml +++ b/interface/resources/qml/AddressBarDialog.qml @@ -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));