Merge pull request #3917 from JurgenKuyper/fix_spaces_standalone_markers

Update markers.js
This commit is contained in:
mikeprimm 2023-01-25 09:00:32 -06:00 committed by GitHub
commit 202625ac23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ componentconstructors['markers'] = function(dynmap, configuration) {
function loadmarkers(world) {
removeAllMarkers();
var url = concatURL(dynmap.options.url.markers, '_markers_/marker_' + encodeURIComponent(world) + '.json');
var url = concatURL(dynmap.options.url.markers, '_markers_/marker_' + world + '.json');
$.getJSON(url, function(data) {
var ts = data.timestamp;