()
| 204 | } |
| 205 | |
| 206 | func (s *Session) resetConversationLocked() { |
| 207 | opts := append([]session.Opt(nil), s.cfg.SessionOptions...) |
| 208 | s.session = session.New(opts...) |
| 209 | } |
| 210 | |
| 211 | func (s *Session) cancelActiveLocked() { |
| 212 | if s.activeCancel != nil { |
no test coverage detected