Fix for embeds w/o descriptions crashing the bot
This commit is contained in:
		
							parent
							
								
									cc3d1e1417
								
							
						
					
					
						commit
						a08a83cbbb
					
				| @ -861,6 +861,8 @@ const functions = { | |||||||
| 					// If the message doesn't contain an embed, we can ignore it
 | 					// If the message doesn't contain an embed, we can ignore it
 | ||||||
| 					if (message.embeds == undefined) return; | 					if (message.embeds == undefined) return; | ||||||
| 					if (message.embeds.length == 0) return; | 					if (message.embeds.length == 0) return; | ||||||
|  | 					if (message.embeds.data == undefined) return; | ||||||
|  | 					if (message.embeds.data.description == undefined) return; | ||||||
| 					// Check the description field of the embed to determine if it matches Grow A Tree's notification texts
 | 					// Check the description field of the embed to determine if it matches Grow A Tree's notification texts
 | ||||||
| 					if (message.embeds[0].data.description.includes(strings.notifications.water)) { | 					if (message.embeds[0].data.description.includes(strings.notifications.water)) { | ||||||
| 						functions.sendWaterReminder(guildInfo, guildInfo.waterMessage, guildInfo.reminderChannelId, guild); | 						functions.sendWaterReminder(guildInfo, guildInfo.waterMessage, guildInfo.reminderChannelId, guild); | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user