Fix incorrect casing on HandleCommandPipeline

This commit is contained in:
roridev
2021-11-26 09:26:53 -03:00
parent a92ec56d88
commit adf3a9c459

View File

@@ -517,13 +517,13 @@ namespace Discord.Commands
if (validationResult is MatchResult matchResult)
{
return await handleCommandPipeline(matchResult, context, services);
return await HandleCommandPipeline(matchResult, context, services);
}
return validationResult;
}
private async Task<IResult> handleCommandPipeline(MatchResult matchResult, ICommandContext context, IServiceProvider services)
private async Task<IResult> HandleCommandPipeline(MatchResult matchResult, ICommandContext context, IServiceProvider services)
{
if (!matchResult.IsSuccess)
return matchResult;