From db709b3993dd77bc7a05feec6af7edbbd9862f0c Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Thu, 6 Oct 2022 22:25:04 -0400 Subject: [PATCH] Vircadia MS2 compatibility Manage to "no cache" in the http request header (since they no more accept "acash" Add per_page=1000 since they change the default to 10. with the parameter it works equally for both: Overte DS1 and Vircadia MS2 --- scripts/system/places/places.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/system/places/places.js b/scripts/system/places/places.js index 9ec09ecec3..753976f5f9 100644 --- a/scripts/system/places/places.js +++ b/scripts/system/places/places.js @@ -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 "";