Skip to content
Snippets Groups Projects
Commit 5982577f authored by akiraohgaki's avatar akiraohgaki
Browse files

Fix

parent e38afbeb
No related merge requests found
...@@ -239,6 +239,10 @@ void WebSocketServer::callFunction(const QJsonObject &request, QWebSocket *wsCli ...@@ -239,6 +239,10 @@ void WebSocketServer::callFunction(const QJsonObject &request, QWebSocket *wsCli
itemHandler_->uninstall(arg[0].toString()); itemHandler_->uninstall(arg[0].toString());
return; return;
} }
// Default
else {
return;
}
wsClient->sendTextMessage(QString(qtlib::Json(response).toJson())); wsClient->sendTextMessage(QString(qtlib::Json(response).toJson()));
//wsClient->sendBinaryMessage(qtlib::Json(response).toJson()); //wsClient->sendBinaryMessage(qtlib::Json(response).toJson());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment