mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-12-25 18:17:37 +01:00
Update markers.js
fixed issue with standalone webserver and spaces in world name, double urlencode changed %20 to %2520 which didn't resolve to the proper address
This commit is contained in:
parent
a6548ec0b7
commit
8f62d8e57e
@ -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_' + encodeURIComponent(world) + '.json');
|
var url = concatURL(dynmap.options.url.markers, '_markers_/marker_' + world + '.json');
|
||||||
|
|
||||||
$.getJSON(url, function(data) {
|
$.getJSON(url, function(data) {
|
||||||
var ts = data.timestamp;
|
var ts = data.timestamp;
|
||||||
|
Loading…
Reference in New Issue
Block a user