Skip to content

Commit

Permalink
fixed: 5e5788d didn't probe when scanning
Browse files Browse the repository at this point in the history
  • Loading branch information
opdenkamp committed Mar 31, 2020
1 parent c299d71 commit d9c415c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcec/devices/CECDeviceMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ void CCECDeviceMap::GetActive(CECDEVICEVEC &devices) const
for (auto it = m_busDevices.begin(); it != m_busDevices.end(); ++it)
{
auto dev = it->second;
if (!!dev && dev->IsActive()) {
if (!!dev && dev->IsActive(false)) {
devices.push_back(it->second);
}
}
Expand Down

0 comments on commit d9c415c

Please sign in to comment.