diff --git a/src/notification/discord.ts b/src/notification/discord.ts index ee1fc79..880bb9b 100644 --- a/src/notification/discord.ts +++ b/src/notification/discord.ts @@ -15,7 +15,9 @@ export function sendDiscordMessage(link: Link, store: Store) { try { const embed = new MessageBuilder(); embed.setTitle('Stock Notification'); - embed.addField('URL', link.cartUrl ? link.cartUrl : link.url, true); + if (link.cartUrl) + embed.addField('Add To Cart Link', link.cartUrl, true); + embed.addField('Product Page', link.url, true); embed.addField('Store', store.name, true); embed.addField('Brand', link.brand, true); embed.addField('Series', link.series, true);