Do not log the received Foursquare push secret (#182281)

This commit is contained in:
Franck Nijhof
2026-09-15 18:12:17 +02:00
committed by GitHub
parent 08ded881c6
commit 0fed03aa68
@@ -102,9 +102,7 @@ class FoursquarePushReceiver(HomeAssistantView):
_LOGGER.debug("Received Foursquare push: %s", data)
if self.push_secret != secret:
_LOGGER.error(
"Received Foursquare push with invalid push secret: %s", secret
)
_LOGGER.error("Received Foursquare push with an invalid push secret")
return self.json_message("Incorrect secret", HTTPStatus.BAD_REQUEST)
request.app[KEY_HASS].bus.async_fire(EVENT_PUSH, data)