mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-31 15:19:42 +02:00
Ignore sequelize hooks when updating user lastSeen on socket authentication
This commit is contained in:
parent
572fb0993c
commit
7a9c869ac5
2 changed files with 5 additions and 3 deletions
|
@ -192,9 +192,9 @@ class SocketAuthority {
|
|||
|
||||
this.adminEmitter('user_online', client.user.toJSONForPublic(this.Server.playbackSessionManager.sessions))
|
||||
|
||||
// Update user lastSeen
|
||||
// Update user lastSeen without firing sequelize bulk update hooks
|
||||
user.lastSeen = Date.now()
|
||||
await Database.updateUser(user)
|
||||
await Database.userModel.updateFromOld(user, false)
|
||||
|
||||
const initialPayload = {
|
||||
userId: client.user.id,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue