dump telegrams doesnt need to show the cmd

This commit is contained in:
proddy
2024-09-17 09:31:03 +02:00
parent 6f556a9ebb
commit ade5cb79e3
3 changed files with 3 additions and 7 deletions

View File

@@ -1428,7 +1428,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.process_function_ != nullptr);
telegram_functions_dump.emplace_back(tf.telegram_type_id_, tf.telegram_type_name_, tf.fetch_);
}
}
#endif