Build for Qt 5.9

This commit is contained in:
Aditya Kulkarni
2019-01-18 15:09:18 -08:00
parent a63815e824
commit da7503191d

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); return processGetInfo(mainWindow);
} }
else if (msg["command"] == "getTransactions") { else if (msg.object()["command"] == "getTransactions") {
return processGetTransactions(mainWindow); return processGetTransactions(mainWindow);
} }
else { else {