Skip to content
Snippets Groups Projects
Commit 57280652 authored by Benjamin Wenger's avatar Benjamin Wenger
Browse files

fix to conversations

parent c7215b05
No related branches found
No related tags found
No related merge requests found
...@@ -111,7 +111,7 @@ func (c *Conversation) GetNextSendID() (uint64, uint32) { ...@@ -111,7 +111,7 @@ func (c *Conversation) GetNextSendID() (uint64, uint32) {
"%s", err) "%s", err)
} }
c.mux.Unlock() c.mux.Unlock()
return old, uint32(old & 0x000000007FFFFFFF) return old, uint32(old & 0x00000000FFFFFFFF)
} }
func loadConversation(kv *versioned.KV, partner *id.ID) (*Conversation, error) { func loadConversation(kv *versioned.KV, partner *id.ID) (*Conversation, error) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment