From 906d536658a6e828466f7f624ae424323d23be2a Mon Sep 17 00:00:00 2001 From: "littletux89@gmail.com" <littletux89@gmail.com> Date: Fri, 2 Aug 2019 22:39:47 +0300 Subject: [PATCH] [*] Fixed errors of going beyond and checking the launch of the service. --- KelvinDashboardGUI/DapCommandController.cpp | 2 +- KelvinDashboardGUI/KelvinDashboardGUI.pro | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/KelvinDashboardGUI/DapCommandController.cpp b/KelvinDashboardGUI/DapCommandController.cpp index 9777d53da..f89ad9b55 100755 --- a/KelvinDashboardGUI/DapCommandController.cpp +++ b/KelvinDashboardGUI/DapCommandController.cpp @@ -118,7 +118,7 @@ void DapCommandController::processGetWalletInfo() { qInfo() << "processGetWalletInfo()"; DapRpcServiceReply *reply = static_cast<DapRpcServiceReply *>(sender()); - if (!reply || reply->response().result().toVariant().isNull()) { + if (!reply || reply->response().result().toVariant().toStringList().count() <= 0) { qWarning() << "Invalid response received"; return; } diff --git a/KelvinDashboardGUI/KelvinDashboardGUI.pro b/KelvinDashboardGUI/KelvinDashboardGUI.pro index 3c8328bef..1fc8210de 100755 --- a/KelvinDashboardGUI/KelvinDashboardGUI.pro +++ b/KelvinDashboardGUI/KelvinDashboardGUI.pro @@ -32,7 +32,7 @@ else { # deprecated API in order to know how to port your code away from it. DEFINES += QT_DEPRECATED_WARNINGS DEFINES += DAP_BRAND=\\\"$$BRAND\\\" -DEFINES += DAP_SERVICE_NAME=\\\"kelvin-dashboard\\\" +DEFINES += DAP_SERVICE_NAME=\\\"KelvinDashboardService\\\" DEFINES += DAP_VERSION=\\\"$$VERSION\\\" ICON = icon.ico # You can also make your code fail to compile if you use deprecated APIs. -- GitLab