1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-07 22:02:22 +01:00

Merge branch 'missing_password_ifdefs' into integration

This commit is contained in:
J. Nick Koston
2025-07-25 13:33:47 -10:00

View File

@@ -907,8 +907,10 @@ class ProtoService {
this->on_unauthenticated_access();
return false;
}
#endif
return true;
#else
return true;
#endif
}
};