Merge pull request #363 from Carifio24/place-hash

Fix issue with constellation-index place sharing
This commit is contained in:
Peter Williams 2023-11-01 11:05:31 -04:00 коммит произвёл GitHub
Родитель c59c547884 784f9bf93c
Коммит 23e39b3cb8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -64,7 +64,7 @@ wwt.app.factory(
function getPlaceById(id) {
var deferred = $q.defer();
searchDataService.getData(all).then(function (d) {
searchDataService.getData().then(function (d) {
var constellationIndex = parseInt(id.split('.')[0]);
var placeIndex = parseInt(id.split('.')[1]);
var p = d.Constellations[constellationIndex].places[placeIndex];