event: remove omitemptys from MSC1767Audio
Some checks are pending
Go / Lint (latest) (push) Waiting to run
Go / Build (old, libolm) (push) Waiting to run
Go / Build (latest, libolm) (push) Waiting to run
Go / Build (old, goolm) (push) Waiting to run
Go / Build (latest, goolm) (push) Waiting to run

This commit is contained in:
Tulir Asokan 2024-08-21 10:46:24 +03:00
commit edef968c64

View file

@ -1,8 +1,8 @@
package event
type MSC1767Audio struct {
Duration int `json:"duration,omitempty"`
Waveform []int `json:"waveform,omitempty"`
Duration int `json:"duration"`
Waveform []int `json:"waveform"`
}
type MSC3245Voice struct{}