merge graph timestamps into single array, use seconds
This commit is contained in:
@ -63,8 +63,8 @@ class Database {
|
||||
// When complete increment completeTasks to know when complete
|
||||
this.getRecord(serverRegistration.data.ip, (playerCount, timestamp) => {
|
||||
serverRegistration.recordData = {
|
||||
playerCount: playerCount,
|
||||
timestamp: timestamp
|
||||
playerCount,
|
||||
timestamp: Math.floor(timestamp / 1000)
|
||||
}
|
||||
|
||||
// Check if completedTasks hit the finish value
|
||||
|
Reference in New Issue
Block a user