in sessions/sessions.go [172:183]
func (s *collection) Get(unifiedID string) (*resources.Session, bool) {
s.Lock()
defer s.Unlock()
record, ok := s.sessionsMap[unifiedID]
if !ok {
return nil, false
}
if unified := record.UnifiedView(unifiedID); unified != nil {
return unified, true
}
return nil, false
}