Merge pull request #3297 from Programie/v3.0

Fixed not replacing {timestamp} placeholder in configuration request
This commit is contained in:
mikeprimm 2021-03-11 20:36:58 -06:00 committed by GitHub
commit a628611aa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ function DynMap(options) {
if(me.checkForSavedURL())
return;
me.options = options;
$.getJSON(me.options.url.configuration, function(configuration) {
$.getJSON(me.formatUrl("configuration", { timestamp: me.lasttimestamp }), function(configuration) {
if(configuration.error == 'login-required') {
me.saveURL();
window.location = 'login.html';
@ -47,7 +47,7 @@ DynMap.prototype = {
registeredTiles: [],
players: {},
lasttimestamp: new Date().getUTCMilliseconds(), /* Pseudorandom - prevent cached '?0' */
lasttimestamp: new Date().getTime(), /* Pseudorandom - prevent cached '?0' */
reqid: 0,
servertime: 0,
serverday: false,