Skip to content

Commit

Permalink
incorrect struct tags in push
Browse files Browse the repository at this point in the history
  • Loading branch information
or-else committed Jun 19, 2022
1 parent 674f74f commit 9f306a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/push/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ type Payload struct {
// Actual Data.Content of the message, if requested
Content interface{} `json:"content,omitempty"`
// State of the video call (available in video call messages only).
Webrtc string `json:webrtc,omitempty`
Webrtc string `json:"webrtc,omitempty"`
// Seq id the message is supposed to replace.
Replace string `json:replace,omitempty`
Replace string `json:"replace,omitempty"`

// Subscription change notification.

Expand Down

0 comments on commit 9f306a6

Please sign in to comment.