Browse Source

Fix: modal response failing (#2187)

* Update bugreport.yml

* Update bugreport.yml

removed d.net reference. fixed spelling.

* Update bugreport.yml

Adjusted verbiage for clarity

* Fix for modal response failing

Credit to @Cenggo for finding issue.
tags/3.5.0
KeylAmi GitHub 3 years ago
parent
commit
d656722bd9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.Interactions/Info/Commands/ModalCommandInfo.cs

+ 1
- 1
src/Discord.Net.Interactions/Info/Commands/ModalCommandInfo.cs View File

@@ -49,7 +49,7 @@ namespace Discord.Interactions
try
{
var args = new object[Parameters.Count];
var captureCount = additionalArgs.Length;
var captureCount = additionalArgs?.Length ?? 0;

for(var i = 0; i < Parameters.Count; i++)
{


Loading…
Cancel
Save