do not append serverId in getPingHistory entries
This commit is contained in:
@ -102,13 +102,13 @@ export class App {
|
||||
.reduce((sum, current) => sum + current, 0)
|
||||
}
|
||||
|
||||
addServer = (pings, timestampPoints) => {
|
||||
addServer = (serverId, pings, timestampPoints) => {
|
||||
// Even if the backend has never pinged the server, the frontend is promised a placeholder object.
|
||||
// result = undefined
|
||||
// error = defined with "Waiting" description
|
||||
// info = safely defined with configured data
|
||||
const latestPing = pings[pings.length - 1]
|
||||
const serverRegistration = this.serverRegistry.createServerRegistration(latestPing.serverId)
|
||||
const serverRegistration = this.serverRegistry.createServerRegistration(serverId)
|
||||
|
||||
serverRegistration.initServerStatus(latestPing)
|
||||
|
||||
|
@ -67,8 +67,8 @@ export class SocketManager {
|
||||
}
|
||||
}
|
||||
|
||||
payload.servers.forEach(server => {
|
||||
this._app.addServer(server, payload.timestampPoints)
|
||||
payload.servers.forEach((pings, serverId) => {
|
||||
this._app.addServer(serverId, pings, payload.timestampPoints)
|
||||
})
|
||||
|
||||
if (payload.mojangServices) {
|
||||
|
Reference in New Issue
Block a user