From c6041712b77913157d9bd567a3155dba83f7bd02 Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Sun, 12 Dec 2021 13:31:36 -0500 Subject: [PATCH] Use the placename instead of address (ip) Simple change that is using the placename instead of the "address" feild from the place api to build the url to connect. For those where the placename = the domain name, Interface will be able to resolve path correctly. using the address, this makes interface using 100% of the time the ip:/port information. --- scripts/communityScripts/explore/explore.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/communityScripts/explore/explore.html b/scripts/communityScripts/explore/explore.html index 51f2045915..b2a86f545b 100644 --- a/scripts/communityScripts/explore/explore.html +++ b/scripts/communityScripts/explore/explore.html @@ -326,7 +326,7 @@ if (placesData[i].domain.active && placesData[i].visibility == "open" && new Date(placesData[i].last_activity_update) > activeThresholdTime) { joinedData.push({ "index": joinedData.length, - "location": placesData[i].address, + "location": placesData[i].name, "name": placesData[i].name, "owner": placesData[i].managers[0], "userCount": placesData[i].current_attendance,