trigger setLastSeen on all actions

This commit is contained in:
Daniel Lugo 2020-04-18 15:15:38 -04:00
parent d5b9a23356
commit 6938ef8676

View file

@ -442,6 +442,10 @@ class Mediator {
this.socket.on(IS_GUN_AUTH, this.isGunAuth)
this.socket.on(Action.SET_LAST_SEEN_APP, this.setLastSeenApp)
Object.values(Action).forEach(actionConstant =>
this.socket.on(actionConstant, this.setLastSeenApp)
)
}
/** @param {SimpleSocket} socket */