From fd7f0b4527bdddb44247971a6a71600b75616100 Mon Sep 17 00:00:00 2001 From: devilreef <86633411+devilr33f@users.noreply.github.com> Date: Sat, 24 Jan 2026 20:20:43 +0600 Subject: [PATCH] fix: update embed logo URL and add publish timestamp to blog embed --- src/modules/discord-webhooks/formatter.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/modules/discord-webhooks/formatter.ts b/src/modules/discord-webhooks/formatter.ts index db64173..f1a1147 100644 --- a/src/modules/discord-webhooks/formatter.ts +++ b/src/modules/discord-webhooks/formatter.ts @@ -8,7 +8,7 @@ import type { DiscordEmbed } from './types.js' import { getBlogUrl, getThumbnailUrl } from '../hytale-blog/tracker.js' const EMBED_COLOR = 0x64A7D1 -const HYTALE_LOGO = 'https://hytale.com/favicon.ico' +const HYTALE_LOGO = 'https://files.femboy.page/hytale-logo.png' export function formatLauncherEmbed(update: LauncherUpdate): DiscordEmbed { return { @@ -116,6 +116,8 @@ export function formatBlogEmbed(post: BlogPost): DiscordEmbed { title: post.title, description: `*by **${post.author}***\n\n[Read the full post](${url})`, color: EMBED_COLOR, + footer: { text: 'Published' }, + timestamp: post.publishedAt, } if (imageUrl) {