fix: 将默认头像尺寸从200调整为120
This commit is contained in:
@@ -29,7 +29,7 @@ export const getCravatar = async (
|
|||||||
const identifier = pickIdentifier(email) || pickIdentifier(name);
|
const identifier = pickIdentifier(email) || pickIdentifier(name);
|
||||||
|
|
||||||
if (!identifier) {
|
if (!identifier) {
|
||||||
return `${avatarPrefix}/${DEFAULT_AVATAR_HASH}?s=200&d=retro`;
|
return `${avatarPrefix}/${DEFAULT_AVATAR_HASH}?s=120&d=retro`;
|
||||||
}
|
}
|
||||||
|
|
||||||
const msgUint8 = new TextEncoder().encode(identifier);
|
const msgUint8 = new TextEncoder().encode(identifier);
|
||||||
@@ -37,5 +37,5 @@ export const getCravatar = async (
|
|||||||
const hashArray = Array.from(new Uint8Array(hashBuffer));
|
const hashArray = Array.from(new Uint8Array(hashBuffer));
|
||||||
const hashHex = hashArray.map((b) => b.toString(16).padStart(2, '0')).join('');
|
const hashHex = hashArray.map((b) => b.toString(16).padStart(2, '0')).join('');
|
||||||
|
|
||||||
return `${avatarPrefix}/${hashHex}?s=200&d=retro`;
|
return `${avatarPrefix}/${hashHex}?s=120&d=retro`;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user