From 76395664fd0cdce77081f2376e9572c4b4d0c9a9 Mon Sep 17 00:00:00 2001 From: Cristiano Pires Date: Fri, 1 Dec 2023 15:37:26 +0000 Subject: [PATCH] Error Handling - YTFeed no author on rss --- lib.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib.js b/lib.js index f732d06..abca47b 100644 --- a/lib.js +++ b/lib.js @@ -263,7 +263,8 @@ class _Client extends Client } function sendMessage(res, feed, channel) { - console.log('Lib: YTFeed: SendMessage: Res', res.author.name) + if(!res?.author?.name) return + console.log('Lib: YTFeed: SendMessage: Res: Author: Name:', res?.author?.name) const embed = new EmbedBuilder() embed.setFooter({text:'Rem-chan on ', iconURL:"https://i.imgur.com/g6FSNhL.png"}) embed.setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'});