Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion messaging/messaging.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ type AndroidNotification struct {
BodyLocArgs []string `json:"body_loc_args,omitempty"`
TitleLocKey string `json:"title_loc_key,omitempty"`
TitleLocArgs []string `json:"title_loc_args,omitempty"`
ChannelID string `json:"channel_id,omitempty"`
ChannelID string `json:"channelId,omitempty"`
ImageURL string `json:"image,omitempty"`
Ticker string `json:"ticker,omitempty"`
Sticky bool `json:"sticky,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion messaging/messaging_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ var validMessages = []struct {
"title_loc_args": []interface{}{"t1", "t2"},
"body_loc_key": "blk",
"body_loc_args": []interface{}{"b1", "b2"},
"channel_id": "channel",
"channelId": "channel",
"image": "http://image.jpg",
"ticker": "tkr",
"sticky": true,
Expand Down