lastchange was in ms, spaceapi expects seconds here

This commit is contained in:
smash 2018-02-22 18:12:46 +01:00
parent 266a492611
commit 7a512ee77d
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ ippoll.on('doneCount', function (num) {
ippoll.on('doneState', function (state) {
spaceanswer.state.open = state;
spaceanswer.state.lastchange = new Date().getTime();
spaceanswer.state.lastchange = new Date().getTime() / 1000;
simpleanswer.state = state;
simpleanswer.lastchange = spaceanswer.state.lastchange;
io.sockets.emit('sdata', {data: simpleanswer});