Merge pull request #1533 from AleziaKurdis/ExploreApp-used-placename-to-connect

Explore App: Use the placename instead of address (ip:port).
This commit is contained in:
Dale Glass 2021-12-18 20:26:08 +01:00 committed by GitHub
commit ab334405a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,