From e819eec41ff050b960b06b04652be1061a06a0c0 Mon Sep 17 00:00:00 2001 From: Qstick Date: Mon, 13 Apr 2020 18:39:05 -0400 Subject: [PATCH] Fix SendGrid Exception copy/paste --- src/NzbDrone.Core/Notifications/SendGrid/SendGridProxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/SendGrid/SendGridProxy.cs b/src/NzbDrone.Core/Notifications/SendGrid/SendGridProxy.cs index ed98bfc4c..a8a44ef11 100644 --- a/src/NzbDrone.Core/Notifications/SendGrid/SendGridProxy.cs +++ b/src/NzbDrone.Core/Notifications/SendGrid/SendGridProxy.cs @@ -64,7 +64,7 @@ namespace NzbDrone.Core.Notifications.SendGrid throw new SendGridException("Unauthorized - AuthToken is invalid"); } - throw new SendGridException("Unable to connect to Gotify. Status Code: {0}", ex); + throw new SendGridException("Unable to connect to SendGrid. Status Code: {0}", ex); } }