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)