Skip to content

Commit 2381a89

Browse files
committed
pr feedback
1 parent c3a010b commit 2381a89

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

articles/communication-services/concepts/call-automation/call-automation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ To understand which events are published for different actions, refer to [this g
145145
1. Using the incorrect IdentifierType for endpoints for `Transfer` requests (like using CommunicationUserIdentifier to specify a phone number) returns a 500 error instead of a 400 error code. Solution: Use the correct type, CommunicationUserIdentifier for Communication Users and PhoneNumberIdentifier for phone numbers.
146146
2. Taking a pre-call action like Answer/Reject on the original call after redirected it gives a 200 success instead of failing on 'call not found'.
147147
3. Transferring a call with more than two participants is currently not supported.
148-
4. After transferring a call, you may receive two `CallDisconnected` events.
148+
4. After transferring a call, you may receive two `CallDisconnected` events and will need to handle this behavior by ignoring the duplicate.
149149

150150
## Next steps
151151

articles/communication-services/quickstarts/call-automation/includes/callflow-for-customer-interactions-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ var builder = WebApplication.CreateBuilder(args);
7171

7272
var client = new CallAutomationClient("<resource_connection_string"); //noted from pre-requisite step
7373
var tunnelUrl = builder.Configuration["VS_TUNNEL_URL"]; // Visual Studio Dev Tunnel's dynamic FQDN
74-
var mediaFileSource = new Uri("<link_to_media_file>");
74+
var mediaFileSource = new Uri("<link_to_media_file>"); //This URL should be public accessible and the file format should be WAV, 16KHz, Mono.
7575
var applicationPhoneNumber = "<phone_number_acquired_as_prerequisite>";
7676
var phoneNumberToAddToCall = "<phone_number_to_add_to_call>"; //in E.164 format starting +...
7777

0 commit comments

Comments
 (0)