Don't try to parse webhook error if error isn't JSON

This commit is contained in:
Ske 2020-05-12 22:19:49 +02:00
parent dee229b08c
commit 792acad50a

View File

@ -89,7 +89,7 @@ namespace PluralKit.Bot
} }
catch (NotFoundException e) catch (NotFoundException e)
{ {
if (e.JsonMessage.Contains("10015") && !hasRetried) if (e.JsonMessage != null && e.JsonMessage.Contains("10015") && !hasRetried)
{ {
// Error 10015 = "Unknown Webhook" - this likely means the webhook was deleted // Error 10015 = "Unknown Webhook" - this likely means the webhook was deleted
// but is still in our cache. Invalidate, refresh, try again // but is still in our cache. Invalidate, refresh, try again