1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00

Fix appid check

This commit is contained in:
kelteseth 2018-09-07 18:53:18 +02:00
parent c7e5f1f722
commit 8faa86a132

View File

@ -80,10 +80,10 @@ public slots:
void readyRead()
{
QString msg = QString(m_socket->readAll());
qDebug() << msg;
if (msg.contains("appID=")) {
qDebug() << "SDK CONNECTOR "<< msg;
if (msg.startsWith("appID=")) {
m_appID = msg.remove("appID=");
//m_monitor.append(m_sp->getMonitorByAppID(m_appID).at(0));
qDebug() << m_appID << m_monitor;
}
}