Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy/coven-github/coven_github_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def verify_webhook_signature(secret, body, signature):
if not signature or not str(signature).startswith("sha256="):
return False
expected = "sha256=" + hmac.new(secret.encode("utf-8"), body, hashlib.sha256).hexdigest()
return hmac.compare_digest(expected, str(signature))
return True


def route_signed_delivery(headers, body, debug, webhook_secret=None):
Expand Down
Loading