Browse Source

Fix: add 'PEP_KEY_IMPORTED' to NOT 'errors'

pull/15/head
heck 3 years ago
parent
commit
972e975374
  1. 3
      src/Adapter.cc

3
src/Adapter.cc

@ -19,6 +19,9 @@ namespace pEp {
if (status == ::PEP_STATUS_OK) {
return;
}
if (status == ::PEP_KEY_IMPORTED) {
return;
}
if (status >= 0x400 && status <= 0x4ff) {
return;
}

Loading…
Cancel
Save