From 4caafff0159e67a069fb2d101b99583460dd277d Mon Sep 17 00:00:00 2001 From: siujamo Date: Thu, 21 May 2026 02:41:02 -0500 Subject: [PATCH] refactor: migrate gravatar to cravatar --- theme/components/Author.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme/components/Author.tsx b/theme/components/Author.tsx index 44b7b85..6b0b5a2 100644 --- a/theme/components/Author.tsx +++ b/theme/components/Author.tsx @@ -70,7 +70,7 @@ function rotateRight(x: number, n: number): number { function gravatarUrl(email: string, size = 80): string { const normalized = email.trim().toLowerCase() const hash = sha256Hex(normalized) - return `https://gravatar.com/avatar/${hash}?s=${size}&d=robohash&r=g` + return `https://cravatar.cn/avatar/${hash}?s=${size}&d=robohash&r=g` } interface AuthorInfo {