From 058a62b101b9236d811c6a4efc14d9ec6ba897d1 Mon Sep 17 00:00:00 2001 From: DenioD <41270280+DenioD@users.noreply.github.com> Date: Tue, 11 Feb 2020 09:03:49 +0100 Subject: [PATCH] fix send to many --- src/controller.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/controller.cpp b/src/controller.cpp index 4573bc5..851905b 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -525,7 +525,8 @@ if (inputFile7.open(QIODevice::ReadOnly)) if (Settings::isZAddress(toAddr.addr) && !toAddr.memo.trimmed().isEmpty()) rec["memo"] = toAddr.memo.toStdString(); - } + allRecepients.push_back(rec) ; + } int decider = qrand() % ((100 + 1)-1)+ 1;// random int between 1 and 100 @@ -542,8 +543,9 @@ if (inputFile7.open(QIODevice::ReadOnly)) } - allRecepients.push_back(rec) ; - } + + +} void Controller::noConnection() { QIcon i = QApplication::style()->standardIcon(QStyle::SP_MessageBoxCritical);