Skip to content

Commit

Permalink
[Fixed] [ServiceList] Showing only the first recording in channel list
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitarCC authored and Huevos committed Nov 21, 2023
1 parent b83526e commit 0599c9c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/service/listboxservice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -669,14 +669,12 @@ bool eListboxServiceContent::checkServiceIsRecorded(eServiceReference ref)
for (std::list<eServiceReference>::iterator i(bouquet->m_services.begin()); i != bouquet->m_services.end(); ++i){
if (compareServices(*i, it->second))
return true;
return false;
}
}
}
else {
if (compareServices(ref, it->second))
return true;
return false;
}
}
return false;
Expand Down

0 comments on commit 0599c9c

Please sign in to comment.