feat(assist-api): fixed an possible panic

This commit is contained in:
Alexander 2025-04-14 16:31:22 +02:00
parent b41248571e
commit 8280c8754c

View file

@ -298,7 +298,7 @@ func (sm *sessionManagerImpl) getAllRecentlyUpdatedSessions() (map[string]struct
if len(allIDs) == 0 {
sm.log.Debug(sm.ctx, "No updated session IDs found")
return nil, nil
return allIDs, nil
}
var sessionIDsSlice []interface{}