explicitly set serverRegistration.playerCount when firing #addServer
This commit is contained in:
@ -108,6 +108,7 @@ class PingController {
|
||||
// Log to database if enabled
|
||||
if (config.logToDatabase) {
|
||||
const playerCount = result.resp ? result.resp.players.online : 0
|
||||
|
||||
this._app.database.insertPing(serverRegistration.data.ip, timestamp, playerCount)
|
||||
}
|
||||
|
||||
@ -115,6 +116,7 @@ class PingController {
|
||||
// This includes any modified fields and flags used by the frontend
|
||||
// This will not be cached and can contain live metadata
|
||||
const update = serverRegistration.handlePing(timestamp, result.resp, result.err, result.version)
|
||||
|
||||
updates[serverRegistration.serverId] = update
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user