diff --git a/src/ui/databrowserModule/databrowser.service.ts b/src/ui/databrowserModule/databrowser.service.ts index 264d3624966bc3447340143cb490ae83e7a27e42..533d5c7d09112178813064591c76e6bd8155cd91 100644 --- a/src/ui/databrowserModule/databrowser.service.ts +++ b/src/ui/databrowserModule/databrowser.service.ts @@ -249,13 +249,8 @@ export class DatabrowserService implements OnDestroy { private lowLevelQuery(templateName: string, parcellationName: string) { const encodedTemplateName = encodeURIComponent(templateName) const encodedParcellationName = encodeURIComponent(parcellationName) - return Promise.all([ - fetch(`${this.constantService.backendUrl}datasets/templateName/${encodedTemplateName}`, this.constantService.getFetchOption()) - .then(res => res.json()), - fetch(`${this.constantService.backendUrl}datasets/parcellationName/${encodedParcellationName}`, this.constantService.getFetchOption()) - .then(res => res.json()), - ]) - .then(arr => [...arr[0], ...arr[1]]) + return fetch(`${this.constantService.backendUrl}datasets//templateNameParcellationName/${encodedTemplateName}/${encodedParcellationName}`, this.constantService.getFetchOption()) + .then(res => res.json()) /** * remove duplicates */