mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
Fix appid check
This commit is contained in:
parent
c7e5f1f722
commit
8faa86a132
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user