fix marshaljson not being called
This commit is contained in:
parent
2d634d863d
commit
675c42cfd5
|
@ -99,7 +99,7 @@ type BusEvent struct {
|
||||||
Data Packet `json:"data"`
|
Data Packet `json:"data"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *BusEvent) MarshalJSON() (b []byte, err error) {
|
func (e BusEvent) MarshalJSON() (b []byte, err error) {
|
||||||
// create the underlying raw event
|
// create the underlying raw event
|
||||||
j := &RawJsonEvent{
|
j := &RawJsonEvent{
|
||||||
Timestamp: e.Timestamp.UnixMilli(),
|
Timestamp: e.Timestamp.UnixMilli(),
|
||||||
|
|
Loading…
Reference in a new issue