dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

commit f66185d565406e3fa58e59fbaa65c53f633bdbd2
parent ceda065bf82a7b0f086da6c5c287e9e7f8e55d95
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Fri, 29 Dec 2023 22:34:58 -0500

cleanup

Diffstat:
Mpkg/utils/utils.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/utils/utils.go b/pkg/utils/utils.go @@ -245,7 +245,7 @@ func ShortDisplayID(size int64) string { return "" } b := make([]byte, size) - rand.Read(b) + _, _ = cryptoRand.Read(b) return hex.EncodeToString(b)[0:size] }