Skip to content
Snippets Groups Projects
Commit 42d6f1b6 authored by Jono Wenger's avatar Jono Wenger
Browse files

Fix error checking of storage in auth confirm

parent b237c39d
No related branches found
No related tags found
3 merge requests!510Release,!419rewrote the health tracker to both consider if there are waiting rounds and...,!340Project/channels
......@@ -132,7 +132,7 @@ func (s *state) confirm(partner contact.Contact, serviceTag string) (
/*send message*/
if err = s.store.StoreConfirmation(partner.ID, baseFmt.Marshal(),
mac, fp); err == nil {
mac, fp); err != nil {
jww.WARN.Printf("Failed to store confirmation for replay "+
"for relationship between %s and %s, cannot be replayed: %+v",
partner.ID, s.e2e.GetReceptionID(), err)
......
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