support presence detection for HA app: Catch minor id 40004

This commit is contained in:
technyon
2023-12-30 04:57:10 +01:00
parent 060d82e734
commit 8314a507fa
3 changed files with 26 additions and 3 deletions

View File

@@ -96,11 +96,11 @@ private:
{
return s == "" ? "" : "***";
}
const String redact(const int i) const
const String redact(const int32_t i) const
{
return i == 0 ? "" : "***";
}
const String redact(const uint i) const
const String redact(const uint32_t i) const
{
return i == 0 ? "" : "***";
}