mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 16:33:33 +02:00
Move metaverse server URL update: remove unnecessary spaces.
Remove added "include <stdexcept>" (for VS compiling) to separate PR.
This commit is contained in:
parent
3878ad6df6
commit
245b9b8036
3 changed files with 1 additions and 3 deletions
|
@ -11,7 +11,6 @@
|
|||
#define khronos_khr_hpp
|
||||
|
||||
#include <unordered_map>
|
||||
#include <stdexcept>
|
||||
|
||||
namespace khronos {
|
||||
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
#include <vector>
|
||||
#include <memory>
|
||||
#include <functional>
|
||||
#include <stdexcept>
|
||||
|
||||
#include <QtCore/QFile>
|
||||
#include <QtCore/QString>
|
||||
|
|
|
@ -153,7 +153,7 @@ var places = {};
|
|||
|
||||
function changeLobbyTextures() {
|
||||
var req = new XMLHttpRequest();
|
||||
req.open("GET", URLs.METAVERSE_URL + "/api/v1/places?limit=21", false);
|
||||
req.open("GET", URLs.METAVERSE_URL + "/api/v1/places?limit=21", false);
|
||||
req.send();
|
||||
|
||||
places = JSON.parse(req.responseText).data.places;
|
||||
|
|
Loading…
Reference in a new issue