DEV: Check lifetime props in the Presence service (#26975)

This commit is contained in:
Jarek Radosz 2024-05-11 17:44:36 +02:00 committed by GitHub
parent 4c47f25530
commit 2f95628f87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -502,6 +502,10 @@ export default class PresenceService extends Service {
}
async _updateServer() {
if (this.isDestroying || this.isDestroyed) {
return;
}
this._lastUpdate = new Date();
this._updateRunning = true;