Merge branch 'SciSharp:master' into master

This commit is contained in:
hchen2020 2024-08-30 14:01:37 -05:00 committed by GitHub
commit 5521bf6673
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -95,9 +95,11 @@ public class TwilioVoiceController : TwilioController
}
response = twilio.ReturnInstructions(speechPaths, $"twilio/voice/{conversationId}/receive/{seqNum}?states={states}", true);
}
response = twilio.ReturnInstructions(null, $"twilio/voice/{conversationId}/receive/{seqNum}?states={states}&attempts={++attempts}", true);
else
{
response = twilio.ReturnInstructions(null, $"twilio/voice/{conversationId}/receive/{seqNum}?states={states}&attempts={++attempts}", true);
}
}
return TwiML(response);
}