StoreForward: Remove assert when receiving unhandled case (#3661)

This commit is contained in:
GUVWAF 2024-04-18 21:28:11 +02:00 committed by GitHub
parent 425a715995
commit 4c0b7ea409
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -506,7 +506,7 @@ bool StoreForwardModule::handleReceivedProtobuf(const meshtastic_MeshPacket &mp,
break;
default:
assert(0); // unexpected state
break; // no need to do anything
}
return true; // There's no need for others to look at this message.
}