reformatted

This commit is contained in:
decanus 2019-07-23 13:42:53 -05:00
parent 3e579984ae
commit c4bed992e3
No known key found for this signature in database
GPG Key ID: E95B8C69228FF5B4
1 changed files with 4 additions and 1 deletions

View File

@ -95,7 +95,10 @@ func (c *Client) onReceive(message mvdsproto.Message) {
return
}
c.handlePreviousMessage(bytesToGroupID(message.GroupId), bytesToMessageID(msg.PreviousMessage))
c.handlePreviousMessage(
bytesToGroupID(message.GroupId),
bytesToMessageID(msg.PreviousMessage)
)
}
func (c *Client) handlePreviousMessage(group state.GroupID, previousMessage state.MessageID) {