diff --git a/Dalamud/Support/BugBait.cs b/Dalamud/Support/BugBait.cs index 947fcdb6a..2cf87b387 100644 --- a/Dalamud/Support/BugBait.cs +++ b/Dalamud/Support/BugBait.cs @@ -39,7 +39,9 @@ namespace Dalamud.Support }; if (includeException) - model.Exception = Troubleshooting.LastException?.ToString(); + { + model.Exception = Troubleshooting.LastException == null ? "Was included, but none happened" : Troubleshooting.LastException?.ToString(); + } var postContent = new StringContent(JsonConvert.SerializeObject(model), Encoding.UTF8, "application/json"); var response = await client.PostAsync(BugBaitUrl, postContent);