From d1be5b1d436c878120570b233bc393c3554d2cb1 Mon Sep 17 00:00:00 2001 From: ChatDisabled <44729807+ChatDisabled@users.noreply.github.com> Date: Wed, 6 Dec 2023 18:11:50 +0100 Subject: [PATCH] fix(discord): author iconURL --- src/discord.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/discord.js b/src/discord.js index 4341a4f..cbd05a9 100644 --- a/src/discord.js +++ b/src/discord.js @@ -42,7 +42,7 @@ function createEmbed(url, commits, size, pusher) { name: `⚡ ${pusher} pushed ${size} commit${ size === 1 ? '' : 's' }`, - iconURL: `https://github.com/${latest.author.username}.png?size=32`, + iconURL: `https://github.com/${pusher}.png?size=64`, url: url, }) .setDescription(`${getChangeLog(commits, size)}`)