We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ab4f53 commit 1dca6f1Copy full SHA for 1dca6f1
src/adcp/client.py
@@ -983,8 +983,10 @@ async def _handle_mcp_webhook(
983
from adcp.types.generated_poc.core.mcp_webhook_payload import McpWebhookPayload
984
985
# Verify signature before processing (requires both signature and timestamp)
986
- if signature and timestamp and not self._verify_webhook_signature(
987
- payload, signature, timestamp
+ if (
+ signature
988
+ and timestamp
989
+ and not self._verify_webhook_signature(payload, signature, timestamp)
990
):
991
logger.warning(
992
f"Webhook signature verification failed for agent {self.agent_config.id}"
0 commit comments