[PPP] Show info even when no connection to provider is active

This commit is contained in:
TD-er
2026-07-13 16:02:56 +02:00
parent 45827f3651
commit c570df9a3b
+1 -1
View File
@@ -60,7 +60,7 @@ bool NWPlugin_005(NWPlugin::Function function, EventStruct *event, String& strin
ESPEasy::net::ppp::NW005_data_struct_PPP_modem *NW_data =
static_cast<ESPEasy::net::ppp::NW005_data_struct_PPP_modem *>(getNWPluginData(event->NetworkIndex));
if (NW_data && NW_data->attached()) {
if (NW_data /*&& NW_data->attached()*/) {
event->networkInterface = &PPP;
success = event->networkInterface != nullptr;
}