Build for Qt 5.9

This commit is contained in:
Aditya Kulkarni 2019-01-18 15:09:18 -08:00
parent a63815e824
commit da7503191d
1 changed files with 2 additions and 2 deletions

View File

@ -82,10 +82,10 @@ QJsonDocument AppDataServer::processMessage(QString message, MainWindow* mainWin
});
}
if (msg["command"] == "getInfo") {
if (msg.object()["command"] == "getInfo") {
return processGetInfo(mainWindow);
}
else if (msg["command"] == "getTransactions") {
else if (msg.object()["command"] == "getTransactions") {
return processGetTransactions(mainWindow);
}
else {