diff --git a/src/lib/ebus/data.cpp b/src/lib/ebus/data.cpp index 8a1ada7a..515a223e 100644 --- a/src/lib/ebus/data.cpp +++ b/src/lib/ebus/data.cpp @@ -1232,7 +1232,9 @@ result_t ValueListDataField::readSymbols(SymbolString& input, const unsigned cha map::iterator it = m_values.find(value); if (it == m_values.end() && value != m_dataType.replacement) { - return RESULT_ERR_NOTFOUND; // value assignment not found + // fall back to raw value in input + output << setw(0) << dec << static_cast(value); + return RESULT_OK; } if (it == m_values.end()) { if (outputFormat & OF_JSON)