diff options
Diffstat (limited to 'web/app/view/map/BaseMap.js')
-rw-r--r-- | web/app/view/map/BaseMap.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/web/app/view/map/BaseMap.js b/web/app/view/map/BaseMap.js index 26b9f7c1..67e08f68 100644 --- a/web/app/view/map/BaseMap.js +++ b/web/app/view/map/BaseMap.js @@ -41,8 +41,7 @@ Ext.define('Traccar.view.map.BaseMap', { case 'custom': layer = new ol.layer.Tile({ source: new ol.source.XYZ({ - url: new DOMParser() - .parseFromString(server.get('mapUrl'), 'text/html').documentElement.textContent, + url: Ext.String.htmlDecode(server.get('mapUrl')), attributions: '' }) }); |