This commit is contained in:
Alexzhu 2026-04-24 18:23:51 -05:00 committed by GitHub
commit adf1600f75
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -792,7 +792,7 @@ class BlueBubblesAdapter(BasePlatformAdapter):
)[0]
payload = json.loads(payload_str) if payload_str else {}
except Exception as exc:
logger.error("[bluebubbles] webhook parse error: %s", exc)
logger.error("[bluebubbles] webhook parse error: %s", exc, exc_info=True)
return web.json_response({"error": "invalid payload"}, status=400)
event_type = self._value(payload.get("type"), payload.get("event")) or ""