Browse Source

Merge pull request #88 from MyHush/denio

fix send to many, thanks to @gilardh
pull/89/head
Denio 4 years ago
committed by GitHub
parent
commit
1c69ed5a3d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      src/controller.cpp

8
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);

Loading…
Cancel
Save