diff --git a/proxies/dotnet/Controllers/Client.cs b/proxies/dotnet/Controllers/Client.cs index 70d26eb2..cb20ee76 100644 --- a/proxies/dotnet/Controllers/Client.cs +++ b/proxies/dotnet/Controllers/Client.cs @@ -128,7 +128,7 @@ public async Task Post(ClientRequestBody ClientBody) .Build(); await task; - if (eventArgs != null && !eventArgs.Success) { + if (eventArgs != null && eventArgs.Errors.Count > 0) { throw eventArgs.Errors[0]; } } else {