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
1 merge request!67fix for latest client release
......@@ -38,7 +38,7 @@ const (
// A Message belongs to one Conversation.
// A Message may belong to one Message (Parent).
type Message struct {
ID uint64 `json:"id"` // Matches msgPkeyName
ID uint64 `json:"id,omitempty"` // Matches msgPkeyName
MessageID []byte `json:"message_id"` // Index
ConversationPubKey []byte `json:"conversation_pub_key"` // Index
ParentMessageID []byte `json:"parent_message_id"`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment