Skip to content

Commit

Permalink
Fix incorrect casing on HandleCommandPipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
alikindsys committed Nov 26, 2021
1 parent a92ec56 commit adf3a9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Discord.Net.Commands/CommandService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -517,13 +517,13 @@ public async Task<IResult> ExecuteAsync(ICommandContext context, string input, I

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;
Expand Down

0 comments on commit adf3a9c

Please sign in to comment.