Skip to content
Snippets Groups Projects
Commit 0d8ea2a5 authored by Jake Taylor's avatar Jake Taylor
Browse files

fix minor bug preventing callback from being exercised in channels em

parent 686315a1
No related branches found
No related tags found
Loading
...@@ -38,7 +38,7 @@ const ( ...@@ -38,7 +38,7 @@ const (
// A Message belongs to one Conversation. // A Message belongs to one Conversation.
// A Message may belong to one Message (Parent). // A Message may belong to one Message (Parent).
type Message struct { type Message struct {
ID uint64 `json:"id"` // Matches msgPkeyName ID uint64 `json:"id,omitempty"` // Matches msgPkeyName
MessageID []byte `json:"message_id"` // Index MessageID []byte `json:"message_id"` // Index
ConversationPubKey []byte `json:"conversation_pub_key"` // Index ConversationPubKey []byte `json:"conversation_pub_key"` // Index
ParentMessageID []byte `json:"parent_message_id"` ParentMessageID []byte `json:"parent_message_id"`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment