fix(push): use commit message as link text

This commit is contained in:
RhenCloud 2026-08-03 09:29:15 +08:00
parent e01ce3505e
commit 4b3f5189a8
No known key found for this signature in database
GPG key ID: A574A617378C4E0B

View file

@ -47,7 +47,7 @@ export function formatPush(
const shortId = c.id?.slice(0, 7) ?? "???????";
const msg = c.message?.split("\n")[0].slice(0, 72) ?? t("common.no_message");
const url = repo && c.id ? `https://github.com/${repo}/commit/${c.id}` : null;
return { name: `\`${shortId}\``, value: url ? `[${shortId}](${url})${msg}` : msg };
return { name: `\`${shortId}\``, value: url ? `[${msg}](${url})` : msg };
};
if (count <= 5) {