From cf025072e16f2fee538af06b7b10b6715ac463a8 Mon Sep 17 00:00:00 2001 From: Howard Stearns Date: Sat, 16 Jul 2016 09:50:56 -0700 Subject: [PATCH] Only consider "active" domains for all purposes (which on the back end means at least one person connected). --- 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 e8318ef1b8..f08ef5c608 100644 --- a/interface/resources/qml/AddressBarDialog.qml +++ b/interface/resources/qml/AddressBarDialog.qml @@ -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));