feat(backend): fixed db methods in ee
This commit is contained in:
parent
b6d71194d7
commit
67a59545f4
1 changed files with 2 additions and 1 deletions
|
|
@ -56,7 +56,8 @@ func (s *saverImpl) handleExtraMessage(msg messages.Message) error {
|
|||
case *messages.ResourceTiming:
|
||||
return s.ch.InsertWebResourceEvent(session, m)
|
||||
case *messages.JSException:
|
||||
return s.ch.InsertWebErrorEvent(session, types.WrapJSException(m))
|
||||
wrapper, _ := types.WrapJSException(m)
|
||||
return s.ch.InsertWebErrorEvent(session, wrapper)
|
||||
case *messages.IntegrationEvent:
|
||||
return s.ch.InsertWebErrorEvent(session, types.WrapIntegrationEvent(m))
|
||||
case *messages.IssueEvent:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue