feat: URI-encode markers loading world name
This commit is contained in:
parent
33ca5d5594
commit
89b71af96d
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ componentconstructors['markers'] = function(dynmap, configuration) {
|
||||||
|
|
||||||
function loadmarkers(world) {
|
function loadmarkers(world) {
|
||||||
removeAllMarkers();
|
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) {
|
$.getJSON(url, function(data) {
|
||||||
var ts = data.timestamp;
|
var ts = data.timestamp;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue