()
| 216 | } |
| 217 | |
| 218 | func (t *TEvent) EnsureTimestamps() { |
| 219 | if t.Ts == 0 { |
| 220 | t.Ts = time.Now().UnixMilli() |
| 221 | } |
| 222 | gtime := time.UnixMilli(t.Ts) |
| 223 | t.TsLocal = utilfn.ConvertToWallClockPT(gtime).Format(time.RFC3339) |
| 224 | } |
| 225 | |
| 226 | func (t *TEvent) UserSetProps() *TEventUserProps { |
| 227 | if t.Props.UserSet == nil { |
no test coverage detected