From f121112d099baae3ef375ad6ad8f1db849f91093 Mon Sep 17 00:00:00 2001 From: *Kim Zick Date: Sat, 26 Nov 2022 16:26:03 -0500 Subject: [PATCH] Increase avatar entropy --- routes/api/avatar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/api/avatar.go b/routes/api/avatar.go index 43b1cf3..e1ee756 100644 --- a/routes/api/avatar.go +++ b/routes/api/avatar.go @@ -40,7 +40,7 @@ func (h *AvatarHandler) Get(w http.ResponseWriter, r *http.Request) { } if !h.cache.Contains(hash) { - h.cache.Add(hash, avatars.MakeMaleAvatar(hash)) + h.cache.Add(hash, avatars.MakeAvatar(hash)) } data, _ := h.cache.Get(hash)