remove is_received from dump

This commit is contained in:
proddy
2024-04-29 20:57:56 +02:00
parent dcedd75ea1
commit 5f77fd7f40
4 changed files with 212 additions and 217 deletions

View File

@@ -1380,7 +1380,7 @@ void EMSdevice::dump_value_info() {
#if defined(EMSESP_STANDALONE)
void EMSdevice::dump_telegram_info(std::vector<TelegramFunctionDump> & telegram_functions_dump) {
for (auto & tf : telegram_functions_) {
telegram_functions_dump.emplace_back(tf.telegram_type_id_, tf.telegram_type_name_, tf.fetch_, tf.received_, tf.process_function_ != nullptr);
telegram_functions_dump.emplace_back(tf.telegram_type_id_, tf.telegram_type_name_, tf.fetch_, tf.process_function_ != nullptr);
}
}
#endif