fix(backend): fixed an issue related to missing mobile sessions in CH
This commit is contained in:
parent
2cd210fbaa
commit
d746e701b5
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ func (s *saverImpl) handleExtraMessage(msg messages.Message) error {
|
|||
err error
|
||||
)
|
||||
|
||||
if msg.TypeID() == messages.MsgSessionEnd {
|
||||
if msg.TypeID() == messages.MsgSessionEnd || msg.TypeID() == messages.MsgMobileSessionEnd {
|
||||
session, err = s.sessions.GetUpdated(msg.SessionID())
|
||||
} else {
|
||||
session, err = s.sessions.Get(msg.SessionID())
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue