Bump per_page to 100

This commit is contained in:
Zach Fox 2018-01-04 14:42:05 -08:00
parent 14447c26a0
commit 4232bc0200

View file

@ -179,7 +179,7 @@ void Ledger::historyFailure(QNetworkReply& reply) {
void Ledger::history(const QStringList& keys, const QString& pageNumber) {
QJsonObject params;
params["per_page"] = 7;
params["per_page"] = 100;
params["page"] = pageNumber;
keysQuery("history", params, "historySuccess", "historyFailure");
}