catch exceptions
Some checks failed
Deploy to Dokku / docker (ubuntu-latest) (push) Failing after 42s

This commit is contained in:
Lee
2024-07-06 00:18:06 +01:00
parent 45460f8b90
commit bd340448a1
3 changed files with 2 additions and 25 deletions

View File

@ -1,6 +1,7 @@
package cc.fascinated.bat.common;
import cc.fascinated.bat.config.Config;
import io.sentry.Sentry;
import lombok.experimental.UtilityClass;
import net.dv8tion.jda.api.EmbedBuilder;
import net.dv8tion.jda.api.entities.channel.concrete.TextChannel;
@ -68,6 +69,7 @@ public class EmbedUtils {
if (channel != null) {
channel.sendMessageEmbeds(embed.build()).queue();
}
Sentry.captureException(ex); // Capture the exception
return embed;
}
}