Skip to content

Commit

Permalink
Fix map-data url-path having a double slash
Browse files Browse the repository at this point in the history
  • Loading branch information
TBlueF committed Nov 17, 2024
1 parent 083f950 commit 572463d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/webapp/src/js/BlueMapApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ export class BlueMapApp {
// create maps
if (settings.maps !== undefined){
let loadingPromises = settings.maps.map(mapId => {
let map = new BlueMapMap(mapId, settings.mapDataRoot + "/" + mapId + "/", settings.liveDataRoot + "/" + mapId + "/", this.loadBlocker, this.mapViewer.events);
let map = new BlueMapMap(mapId, settings.mapDataRoot + "/" + mapId, settings.liveDataRoot + "/" + mapId, this.loadBlocker, this.mapViewer.events);
maps.push(map);

return map.loadSettings(this.mapViewer.tileCacheHash)
Expand Down

0 comments on commit 572463d

Please sign in to comment.