mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-12-24 17:47:40 +01:00
feat: URI-encode markers loading world name
This commit is contained in:
parent
505d78a8e0
commit
f8a81ce0ac
@ -27,7 +27,7 @@ componentconstructors['markers'] = function(dynmap, configuration) {
|
||||
|
||||
function loadmarkers(world) {
|
||||
removeAllMarkers();
|
||||
var url = concatURL(dynmap.options.url.markers, '_markers_/marker_'+world+'.json');
|
||||
var url = concatURL(dynmap.options.url.markers, '_markers_/marker_' + encodeURIComponent(world) + '.json');
|
||||
|
||||
$.getJSON(url, function(data) {
|
||||
var ts = data.timestamp;
|
||||
|
Loading…
Reference in New Issue
Block a user