fix(backend): fixed typo in issue type
This commit is contained in:
parent
3d7ab8b31d
commit
4480a5d93a
1 changed files with 1 additions and 1 deletions
|
|
@ -172,7 +172,7 @@ func (conn *Conn) InsertMouseThrashing(sessionID uint64, projectID uint32, e *Mo
|
|||
log.Printf("new MouseThrashing event: %v", e)
|
||||
//
|
||||
issueID := mouseThrashingID(projectID, sessionID, e.Timestamp)
|
||||
if err := conn.bulks.Get("webIssues").Append(projectID, issueID, "mouse_trashing", e.Url); err != nil {
|
||||
if err := conn.bulks.Get("webIssues").Append(projectID, issueID, "mouse_thrashing", e.Url); err != nil {
|
||||
log.Printf("insert web issue err: %s", err)
|
||||
}
|
||||
if err := conn.bulks.Get("webIssueEvents").Append(sessionID, issueID, e.Timestamp, truncSqIdx(e.MsgID()), nil); err != nil {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue