~edwargix/git.sr.ht

05f0b46ca1228e772c03375c4637c519f8019932 — Drew DeVault 5 years ago 3ca8461
gitsrht-update-hook: fix signature nonce
1 files changed, 1 insertions(+), 1 deletions(-)

M gitsrht-update-hook/webhooks.go
M gitsrht-update-hook/webhooks.go => gitsrht-update-hook/webhooks.go +1 -1
@@ 77,7 77,7 @@ func deliverWebhooks(subs []WebhookSubscription,

	for _, sub := range subs {
		var (
			nonceSeed [8]byte
			nonceSeed []byte = make([]byte, 8)
			nonceHex  []byte
		)
		_, err := rand.Read(nonceSeed)