fix(GODT-2708): fix dimensions event format + handling of ReportClicked event.

This commit is contained in:
Romain Le Jeune
2023-07-04 09:59:43 +00:00
committed by Romain LE JEUNE
parent cc17366c1c
commit eaa673c4e4
11 changed files with 76 additions and 47 deletions

View File

@ -24,7 +24,7 @@ import (
func (bridge *Bridge) ReportBugClicked() {
safe.Lock(func() {
for _, user := range bridge.users {
user.ReportBugSent()
user.ReportBugClicked()
}
}, bridge.usersLock)
}