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

fixed a crash an updated bindings docs

parent 6bd2f79f
No related branches found
No related tags found
3 merge requests!510Release,!226WIP: Api2.0,!207WIP: Client Restructure
......@@ -98,7 +98,9 @@ func (rcs *receivedConfirmService) Process(msg format.Message,
"%s : %+v", rcs.GetPartner(), receptionID.Source, err)
}
rcs.s.backupTrigger("received confirmation from request")
if rcs.s.backupTrigger != nil {
rcs.s.backupTrigger("received confirmation from request")
}
// remove the service used for notifications of the confirm
state.net.DeleteService(receptionID.Source, rcs.notificationsService, nil)
......
......@@ -55,7 +55,7 @@ func (c *Client) Connect(recipientContact []byte, myIdentity []byte) (
// E2ESendReport is the bindings representation of the return values of SendE2E
// Example E2ESendReport:
// {"RoundList":{"Rounds":[1,5,9]},
// {"Rounds":[1,5,9],
// "MessageID":"51Yy47uZbP0o2Y9B/kkreDLTB6opUol3M3mYiY2dcdQ=",
// "Timestamp":1653582683183384000}
type E2ESendReport struct {
......
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