Skip to content

Commit

Permalink
refactor: redact amazon forwad emails from diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
firstof9 committed Jul 12, 2024
1 parent c7a9a55 commit 8bdc803
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/mail_and_packages/diagnostics.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
from homeassistant.core import HomeAssistant
from homeassistant.helpers.device_registry import DeviceEntry

from .const import COORDINATOR, DOMAIN
from .const import CONF_AMAZON_FWDS, COORDINATOR, DOMAIN

_LOGGER = logging.getLogger(__name__)
REDACT_KEYS = {CONF_PASSWORD, CONF_USERNAME}
REDACT_KEYS = {CONF_PASSWORD, CONF_USERNAME, CONF_AMAZON_FWDS}


async def async_get_config_entry_diagnostics(
Expand Down

0 comments on commit 8bdc803

Please sign in to comment.