otamux: do not requeue muxes with failed scan status
This commit is contained in:
parent
8018b54d6b
commit
abea248bab
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ epggrab_ota_done ( epggrab_ota_mux_t *om, int reason )
|
|||
om->om_q_type = EPGGRAB_OTA_MUX_IDLE;
|
||||
if (reason == EPGGRAB_OTA_DONE_STOLEN) {
|
||||
/* Do not requeue completed muxes */
|
||||
if (!om->om_done && om->om_requeue) {
|
||||
if (!om->om_done && om->om_requeue && mm->mm_scan_result != MM_SCAN_FAIL) {
|
||||
TAILQ_INSERT_HEAD(&epggrab_ota_pending, om, om_q_link);
|
||||
om->om_q_type = EPGGRAB_OTA_MUX_PENDING;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue