diff --git a/auth/receivedConfirm.go b/auth/receivedConfirm.go
index c4b5a7e81398c93fe7894e34fd44e13d7fdfdf1d..8ee24bd341ba6c03e2f00a7a5158d76558b6800e 100644
--- a/auth/receivedConfirm.go
+++ b/auth/receivedConfirm.go
@@ -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)
diff --git a/bindings/connect.go b/bindings/connect.go
index d8e6db0acf984caa4b320f978e8e0b5059592dd5..b7d1bcb181c94b96aee86c3a997a52499e95492d 100644
--- a/bindings/connect.go
+++ b/bindings/connect.go
@@ -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 {