Home button fallback to Tutorial

Previously, the Home button, in the case where there is no home bookmark defined, was redirecting to localhost. But some peopl emight not have a localhost domain server running. This PR change the fallback to the Tutorial instead of localhost,

In addition, the tutorial place card wasn't work correctly. (it was trying to use the name instead of the address. I added an exception case for this.
This commit is contained in:
Alezia Kurdis 2023-08-18 14:30:48 -04:00 committed by GitHub
parent d42b7fdbf4
commit 158de9125a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

@ -425,6 +425,9 @@
if (placeRecords[i].metaverseRegion !== "local") {
placeUrl = "hifi://" + placeRecords[i].address;
}
if (placeRecords[i].name === "tutorial") {
placeUrl = "file:///~/serverless/tutorial.json";
}
//Add the place to the list

View file

@ -94,7 +94,7 @@
if (LocationBookmarks.getHomeLocationAddress()) {
location.handleLookupString(LocationBookmarks.getHomeLocationAddress());
} else {
location.goToLocalSandbox();
Window.location = "file:///~/serverless/tutorial.json";
}
} else if (messageObj.action === "GO_BACK" && (n - timestamp) > INTERCALL_DELAY) {
location.goBack();
@ -442,7 +442,7 @@
"domain": "",
"domainOrder": "ZZZZZZZZZZZZZZZ",
"metaverseServer": "",
"metaverseRegion": "local"
"metaverseRegion": "local"
};
portalList.push(tutorialPortal);