fix sectionsd w/o msgs auto scan
0ff = 0
on = 1
(w/o msgs.) on = 2
auto_scanning == 2 not 3???
Code: Alles auswählen
if ((auto_scanning == 1) || (auto_scanning == 3)) {
if (updateTP(scanType)) {
eventServer->sendEvent(CSectionsdClient::EVT_SERVICES_UPDATE, CEventServer::INITID_SECTIONSD);
}
}
Code: Alles auswählen
if ((auto_scanning == 1) || (auto_scanning == 2)) {
if (updateTP(scanType)) {
eventServer->sendEvent(CSectionsdClient::EVT_SERVICES_UPDATE, CEventServer::INITID_SECTIONSD);
}
}
Code: Alles auswählen
if ((auto_scanning > 0) && (!startup)) {
if (updateTP(scanType)) {
eventServer->sendEvent(CSectionsdClient::EVT_SERVICES_UPDATE, CEventServer::INITID_SECTIONSD);
}
is_new = false;
i = 0;
readLockMessaging();