From 73d7251172aa9ff211a5e3a5be26fa67f4881bd3 Mon Sep 17 00:00:00 2001
From: Rei Star <rubyowo284@pm.me>
Date: Sun, 16 Feb 2025 15:45:09 +0400
Subject: [PATCH] feat: add icon_url to the author in embeds

---
 backend/src/utils.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/backend/src/utils.ts b/backend/src/utils.ts
index 214d3f20..639fb715 100644
--- a/backend/src/utils.ts
+++ b/backend/src/utils.ts
@@ -262,6 +262,7 @@ export const zEmbedInput = z.object({
       z.object({
         name: z.string(),
         url: z.string().optional(),
+        icon_url: z.string().optional(),
         width: z.number().optional(),
         height: z.number().optional(),
       }),