Skip to content

Commit 572463d

Browse files
committed
Fix map-data url-path having a double slash
1 parent 083f950 commit 572463d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/webapp/src/js/BlueMapApp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ export class BlueMapApp {
307307
// create maps
308308
if (settings.maps !== undefined){
309309
let loadingPromises = settings.maps.map(mapId => {
310-
let map = new BlueMapMap(mapId, settings.mapDataRoot + "/" + mapId + "/", settings.liveDataRoot + "/" + mapId + "/", this.loadBlocker, this.mapViewer.events);
310+
let map = new BlueMapMap(mapId, settings.mapDataRoot + "/" + mapId, settings.liveDataRoot + "/" + mapId, this.loadBlocker, this.mapViewer.events);
311311
maps.push(map);
312312

313313
return map.loadSettings(this.mapViewer.tileCacheHash)

0 commit comments

Comments
 (0)