mirror of
https://github.com/ReCloudStudio/WebHooker.git
synced 2026-09-22 16:11:29 +00:00
fix(formatters): use raster PNG forge icons Discord renders
- GitHub footer icon now uses fluidicon.png instead of favicon.ico —
Discord silently drops .ico embed footer icons (png/jpg/webp/gif only)
- Gitea instances use {origin}/assets/img/favicon.png (verified on
codeberg.org and gitea.com); links are still derived from the repo URL
- tests + docs updated to the new icon URLs
This commit is contained in:
parent
c58b800987
commit
c982356e0c
6 changed files with 25 additions and 22 deletions
|
|
@ -91,12 +91,12 @@ describe("discord role mentions", () => {
|
|||
forge: {
|
||||
name: "GitHub",
|
||||
url: "https://github.com",
|
||||
iconUrl: "https://github.com/favicon.ico",
|
||||
iconUrl: "https://github.com/fluidicon.png",
|
||||
},
|
||||
});
|
||||
expect(out.embeds?.[0]?.footer).toEqual({
|
||||
text: "GitHub · acme/widget",
|
||||
icon_url: "https://github.com/favicon.ico",
|
||||
icon_url: "https://github.com/fluidicon.png",
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
@ -451,7 +451,7 @@ describe("dispatchEvent fallback routing", () => {
|
|||
});
|
||||
expect(footers).toContainEqual({
|
||||
text: "内网 Gitea · owner/repo",
|
||||
icon_url: "https://git.example.com/favicon.ico",
|
||||
icon_url: "https://git.example.com/assets/img/favicon.png",
|
||||
});
|
||||
expect(footers).toContainEqual({ text: "owner/repo" });
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue