don't prevent sending telegrams when dest = 0x00 (https://github.com/proddy/EMS-ESP/issues/138)

This commit is contained in:
Paul
2019-10-29 22:35:12 +01:00
parent ce17d5fdee
commit d09111960e
2 changed files with 3 additions and 1 deletions

View File

@@ -589,11 +589,13 @@ void _ems_sendTelegram() {
// we don't remove from the queue yet
_EMS_TxTelegram EMS_TxTelegram = EMS_TxQueue.first();
/*
// if there is no destination, also delete it from the queue
if (EMS_TxTelegram.dest == EMS_ID_NONE) {
EMS_TxQueue.shift(); // remove from queue
return;
}
*/
// if we're in raw mode just fire and forget
if (EMS_TxTelegram.action == EMS_TX_TELEGRAM_RAW) {

View File

@@ -1 +1 @@
#define APP_VERSION "1.9.4b2"
#define APP_VERSION "1.9.4b3"