1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fix SendGrid Exception copy/paste

This commit is contained in:
Qstick 2020-04-13 18:39:05 -04:00 committed by GitHub
parent ac34684850
commit e819eec41f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,7 +64,7 @@ public void SendNotification(string title, string message, SendGridSettings sett
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);
}
}