fix(backend): added return statement to avoid wrong event inserts
This commit is contained in:
parent
7bffd2f321
commit
5618d104f1
1 changed files with 1 additions and 0 deletions
|
|
@ -79,6 +79,7 @@ func (conn *Conn) InsertIssueEvent(sess *sessions.Session, e *messages.IssueEven
|
|||
|
||||
if e.Type == "app_crash" {
|
||||
log.Printf("app crash event: %+v", e)
|
||||
return nil
|
||||
}
|
||||
|
||||
if err := conn.bulks.Get("webIssues").Append(sess.ProjectID, issueID, e.Type, e.ContextString); err != nil {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue