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)