Handle else

This commit is contained in:
Ben Meadors 2025-07-30 20:07:13 -05:00
parent 3d2ec6fb85
commit e8a65d5e26

View File

@ -601,6 +601,8 @@ bool CannedMessageModule::handleMessageSelectorInput(const InputEvent *event, bo
#if CANNED_MESSAGE_ADD_CONFIRMATION #if CANNED_MESSAGE_ADD_CONFIRMATION
graphics::menuHandler::showConfirmationBanner( graphics::menuHandler::showConfirmationBanner(
"Send message?", [this, destNode, chan, current]() { this->sendText(destNode, chan, current, false); }); "Send message?", [this, destNode, chan, current]() { this->sendText(destNode, chan, current, false); });
#else
this->sendText(destNode, chan, current, false);
#endif #endif
// Do not immediately set runState; wait for confirmation // Do not immediately set runState; wait for confirmation
handled = true; handled = true;