Browse Source

Fix incorrect casing on `HandleCommandPipeline`

tags/3.0.0
roridev 3 years ago
parent
commit
adf3a9c459
No known key found for this signature in database GPG Key ID: D3A399A927942715
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Discord.Net.Commands/CommandService.cs

+ 2
- 2
src/Discord.Net.Commands/CommandService.cs View File

@@ -517,13 +517,13 @@ namespace Discord.Commands


if (validationResult is MatchResult matchResult) if (validationResult is MatchResult matchResult)
{ {
return await handleCommandPipeline(matchResult, context, services);
return await HandleCommandPipeline(matchResult, context, services);
} }


return validationResult; 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) if (!matchResult.IsSuccess)
return matchResult; return matchResult;


Loading…
Cancel
Save