fix: invoke CommandExecuted on async exception failures

This commit is contained in:
Christopher F
2018-10-20 10:52:26 -04:00
parent a253b7ee75
commit 6260749095

View File

@@ -272,6 +272,10 @@ namespace Discord.Commands
var wrappedEx = new CommandException(this, context, ex);
await Module.Service._cmdLogger.ErrorAsync(wrappedEx).ConfigureAwait(false);
var result = ExecuteResult.FromError(CommandError.Exception, ex.Message);
await Module.Service._commandExecutedEvent.InvokeAsync(this, context, result).ConfigureAwait(false);
if (Module.Service._throwOnError)
{
if (ex == originalEx)
@@ -280,7 +284,7 @@ namespace Discord.Commands
ExceptionDispatchInfo.Capture(ex).Throw();
}
return ExecuteResult.FromError(CommandError.Exception, ex.Message);
return result;
}
finally
{