fix serious bug! plugin was incorrectly stopping packet processing

1.2-legacy
Kevin Hester 2021-05-03 10:53:24 +08:00
rodzic c15204fed1
commit e60ef655cb
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -176,5 +176,5 @@ bool ExternalNotificationPlugin::handleReceived(const MeshPacket &mp)
#endif
return true; // Let others look at this message also if they want
return false; // Very important to never return TRUE here. TRUE means we handled the packet and we will stop letting other plugins see it
}