From 2c65831d786078b9027fab396b2099ca6d8df662 Mon Sep 17 00:00:00 2001 From: Volker Birk Date: Tue, 9 Jul 2019 11:01:26 +0200 Subject: [PATCH] bug: should push to the end of the queue --- src/adapter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/adapter.cc b/src/adapter.cc index e411a4c..559d615 100644 --- a/src/adapter.cc +++ b/src/adapter.cc @@ -72,7 +72,7 @@ namespace pEp { } try { - queue().push_front(ev); + queue().push_back(ev); } catch (exception&) { return 1;