From c40d61a6a8ca7111c8fd24864281354350ec0760 Mon Sep 17 00:00:00 2001 From: ekzyis Date: Fri, 9 Jun 2023 06:02:55 +0200 Subject: [PATCH] Stop sending dupes error to discord --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 104bc25..0117283 100644 --- a/main.go +++ b/main.go @@ -60,7 +60,7 @@ func main() { if err != nil { var dupesErr *sn.DupesError if errors.As(err, &dupesErr) { - SendDupesErrorToDiscord(story.ID, dupesErr) + // SendDupesErrorToDiscord(story.ID, dupesErr) continue } SendErrorToDiscord(err)