diff --git a/components/app.js b/components/app.js index 852c3d3..d1c8f15 100644 --- a/components/app.js +++ b/components/app.js @@ -2006,7 +2006,9 @@ export default class App extends Component { this.lastFocusPingDate = now; for (let client of this.clients.values()) { - client.send({ command: "PING", params: ["gamja"] }); + if (client.status === Client.Status.REGISTERED) { + client.send({ command: "PING", params: ["gamja"] }); + } } }