From 3a8b3f45171b65a189d3a870d7c76b6d33db3d5b Mon Sep 17 00:00:00 2001 From: Volker Birk Date: Mon, 29 Jun 2020 12:49:13 +0200 Subject: [PATCH] ignore PEP_STATEMACHINE_CANNOT_SEND --- Adapter.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Adapter.cc b/Adapter.cc index b9ee427..d2479cd 100644 --- a/Adapter.cc +++ b/Adapter.cc @@ -17,6 +17,8 @@ namespace pEp { return; if (status >= 0x400 && status <= 0x4ff) return; + if (status == PEP_STATEMACHINE_CANNOT_SEND) + return; if (status == PEP_OUT_OF_MEMORY) throw bad_alloc(); if (status == PEP_ILLEGAL_VALUE)