Skip to content

Commit 095fb13

Browse files
committed
fix: correct webhook signature header casing in README
1 parent 1eb3930 commit 095fb13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ app = Flask(__name__)
523523

524524
@app.route('/webhook', methods=['POST'])
525525
def webhook():
526-
signature = request.headers.get('Bundleup-Signature')
526+
signature = request.headers.get('BundleUp-Signature')
527527
payload = request.get_data()
528528

529529
if not verify_signature(payload, signature):

0 commit comments

Comments
 (0)