Merge pull request #211 from AleziaKurdis/placeApp-Compatibility

Places App - compatibility with Vircadia MS2
This commit is contained in:
ksuprynowicz 2022-10-24 20:31:02 +02:00 committed by GitHub
commit f914be119a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -183,7 +183,7 @@
for (var i = 0; i < metaverseServers.length; i++ ) {
if (metaverseServers[i].fetch === true) {
extractedData = getContent(metaverseServers[i].url + "/api/v1/places?status=online" + "&acash=" + Math.floor(Math.random() * 999999));
extractedData = getContent(metaverseServers[i].url + "/api/v1/places?status=online&per_page=1000");
if (extractedData === "") {
metaverseServers[i].error = true;
} else {
@ -331,7 +331,8 @@
function getContent(url) {
httpRequest = new XMLHttpRequest();
httpRequest.open("GET", url, false); // false for synchronous request
httpRequest.open("GET", url, false); // false for synchronous request
httpRequest.setRequestHeader("Cache-Control", "no-cache");
httpRequest.timeout = REQUEST_TIMEOUT;
httpRequest.ontimeout=function(){
return "";