Skip to content

Commit

Permalink
fir for invalid scan status on no signal
Browse files Browse the repository at this point in the history
  • Loading branch information
john30 committed Dec 1, 2023
1 parent f00db14 commit 3aadafa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ebusd/bushandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ bool ScanRequest::notify(result_t result, const SlaveSymbolString& slave) {
}
}
m_result = result;
if (m_slaves.empty()) {
if (m_slaves.empty() || result == RESULT_ERR_NO_SIGNAL) {
if (m_deleteOnFinish) {
logNotice(lf_bus, "scan finished");
}
Expand Down

0 comments on commit 3aadafa

Please sign in to comment.