Skip to content

Commit d9d992a

Browse files
committed
fixed blocking errors
1 parent 444243b commit d9d992a

File tree

9 files changed

+18
-15
lines changed

9 files changed

+18
-15
lines changed

articles/communication-services/how-tos/calling-sdk/includes/dominant-speaker/dominant-speaker-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ DominantSpeakersFeature dominantSpeakersFeature = call.feature(Features.DOMINANT
1717
The Dominant Speakers feature object has the following structure:
1818

1919
- `OnDominantSpeakersChanged`: Event for listening for changes in the dominant speakers list.
20-
- `getDominantSpeakersInfo()`: Gets the `DominantSpeakersInfo` object, this object has:
20+
- `getDominantSpeakersInfo()`: Gets the `DominantSpeakersInfo` object. This object has:
2121
- `getSpeakers()`: A list of participant identifiers representing the dominant speakers list.
2222
- `getLastUpdatedAt()`: The date when the dominant speakers list was updated.
2323

articles/communication-services/how-tos/calling-sdk/includes/dominant-speaker/dominant-speaker-ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ let dominantSpeakersFeature = call.feature(Features.dominantSpeakers)
1818
The Dominant Speakers feature object has the following structure:
1919

2020
- `didChangeDominantSpeakers`: Event for listening for changes in the dominant speakers list.
21-
- `dominantSpeakersInfo`: Which gets the `DominantSpeakersInfo` object, this object has:
21+
- `dominantSpeakersInfo`: Which gets the `DominantSpeakersInfo` object. This object has:
2222
- `speakers`: A list of participant identifiers representing the dominant speakers list.
2323
- `lastUpdatedAt`: The date when the dominant speakers list was updated.
2424

articles/communication-services/how-tos/calling-sdk/includes/dominant-speaker/dominant-speaker-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ DominantSpeakersCallFeature dominantSpeakersFeature = call.Features.DominantSpea
1919
The Dominant Speakers feature object has the following structure:
2020

2121
- `OnDominantSpeakersChanged`: Event for listening for changes in the dominant speakers list.
22-
- `DominantSpeakersInfo`: Gets the `DominantSpeakersInfo` object, this object has:
22+
- `DominantSpeakersInfo`: Gets the `DominantSpeakersInfo` object. This object has:
2323
- `Speakers`: A list of participant identifiers representing the dominant speakers list.
2424
- `LastUpdatedAt`: The date when the dominant speakers list was updated.
2525

articles/communication-services/how-tos/calling-sdk/includes/events/events-web.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ The `videoStreamsUpdated` when a remote participant adds or removes a VideoStrea
437437
438438
**How does your application react to the event?**
439439
440-
If your application was processing a stream that is removed, yYour application must stop the processing. When a new stream is added, we recommend that your application start to render or process it.
440+
If your application was processing a stream that is removed, your application must stop the processing. When a new stream is added, we recommend that your application start to render or process it.
441441
442442
**Code Sample:**
443443

articles/communication-services/how-tos/calling-sdk/includes/manage-calls/manage-calls-ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ call.remoteParticipants
194194

195195
### Add a participant to a call
196196

197-
To add a participant to a call as either a user or a phone number, call the`addParticipant` operation. This operation synchronously returns a remote participant instance.
197+
To add a participant to a call as either a user or a phone number, call the `addParticipant` operation. This operation synchronously returns a remote participant instance.
198198

199199
```swift
200200
let remoteParticipantAdded: RemoteParticipant = call.add(participant: CommunicationUserIdentifier(identifier: "userId"))

articles/communication-services/how-tos/calling-sdk/includes/manage-calls/manage-calls-web.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,10 @@ Remote participants have a set of associated properties and collections:
239239
const callEndReasonSubCode = callEndReason.subCode // (number) subCode associated with the reason
240240
```
241241

242-
Notes:
243-
- This property is only set when adding a remote participant via the Call.addParticipant() API, and the remote participant declines for example.
244-
- In the scenario, where UserB kicks UserC, from UserA's perspective, UserA doesn't see this flag get set for UserC. In other words, UserA doesn't see UserC's callEndReason property get set at all.
242+
> [!NOTE]
243+
> This property is only set when adding a remote participant via the Call.addParticipant() API, and the remote participant declines for example.
244+
>
245+
> In the scenario, where UserB kicks UserC, from UserA's perspective, UserA doesn't see this flag get set for UserC. In other words, UserA doesn't see UserC's callEndReason property get set at all.
245246
246247
- `isMuted` status: To find out if a remote participant is muted, check the `isMuted` property. It returns `Boolean`.
247248

@@ -272,7 +273,8 @@ Remote participants have a set of associated properties and collections:
272273
const endpointDetails: EndpointDetails[] = remoteParticipant.endpointDetails;
273274
```
274275

275-
Note: A remote participant could be in the call from many possible endpoints, and each endpoint has its own unique `participantId`. `participantId` is different from the `RemoteParticipant` identifier's raw ID.
276+
> [!NOTE]
277+
> A remote participant could be in the call from many possible endpoints, and each endpoint has its own unique `participantId`. `participantId` is different from the `RemoteParticipant` identifier's raw ID.
276278
277279
### Mute other participants
278280

@@ -309,7 +311,8 @@ Get the local participant ID:
309311
const participantId: string = call.info.participantId;
310312
```
311313

312-
Note: An Azure Communication Services identity can use the web calling SDK in many endpoints, and each endpoint has its own unique `participantId`. `participantId` is different from the Azure Communication Services identity raw ID.
314+
> [!NOTE]
315+
> An Azure Communication Services identity can use the web calling SDK in many endpoints, and each endpoint has its own unique `participantId`. `participantId` is different from the Azure Communication Services identity raw ID.
313316
314317
Retrieve the thread ID if joining a Teams meeting:
315318

articles/communication-services/how-tos/calling-sdk/includes/manage-video/manage-video-web.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const defaultSpeaker = deviceManager.selectedSpeaker;
8080
await deviceManager.selectSpeaker(localCameras[0]);
8181
```
8282

83-
Each `CallAgent` can choose its own microphone and speakers on its associated `DeviceManager`. We recommend that different `CallAgents` use different microphones and speakers. They shouldn't share the same microphones nor speakers. If sharing happens, then Microphone User Facing Diagnostics (UFD) might be triggered and the microphone stops working depending on the browser and os.
83+
Each `CallAgent` can choose its own microphone and speakers on its associated `DeviceManager`. We recommend that different `CallAgents` use different microphones and speakers. They shouldn't share the same microphones nor speakers. If sharing happens, then Microphone User Facing Diagnostics (UFD) might be triggered and the microphone stops working depending on the browser and OS.
8484

8585
### Local video stream
8686

@@ -155,7 +155,7 @@ console.log(result.video);
155155
#### Notes
156156
- `videoDevicesUpdated` event fires when video devices are plugging-in/unplugged.
157157
- `audioDevicesUpdated` event fires when audio devices are plugged.
158-
- When you first create `DeviceManager`, it doesn't know about any devices if permissions aren't granted yet. Initially its device name is empty and it doesn't contain detailed device information. You need to call `DeviceManager.askPermission()`, which prompts the user for device access. When the user selects allows access, the device manager learns about the devices on the system, updates device lists and sends the `audioDevicesUpdated` and `videoDevicesUpdated` events. If a user refreshes the page and creates a device manager, the device manager is able to learn about devices because user granted access previously. It has its device lists filled initially and it doesn't emit 'audioDevicesUpdated' nor 'videoDevicesUpdated' events.
158+
- When you first create `DeviceManager`, it doesn't know about any devices if permissions aren't granted yet. Initially its device name is empty and it doesn't contain detailed device information. You need to call `DeviceManager.askPermission()`, which prompts the user for device access. When the user allows access, the device manager learns about the devices on the system, updates device lists, and sends the `audioDevicesUpdated` and `videoDevicesUpdated` events. If a user refreshes the page and creates a device manager, the device manager learns about devices because the user previously granted access. It has its device lists filled initially and it doesn't emit `audioDevicesUpdated` nor `videoDevicesUpdated` events.
159159
- Speaker enumeration/selection isn't supported on Android Chrome, iOS Safari, nor macOS Safari.
160160

161161
## Place a call with video camera
@@ -588,6 +588,6 @@ await callObj2.mute();
588588
Limitations:
589589
- Sending video streams must be done with two different `CallAgent` instances using different identities. The code snippet shows two call agents being used, each with its own Call object.
590590
- In the code example, both CallAgents are joining the same call (same call IDs). You can also join different calls with each agent and send one video on one call and a different video on the other call.
591-
- Sending the same camera in both CallAgent, isn't supported. They must be two different cameras.
591+
- Sending the same camera in both CallAgents isn't supported. They must be two different cameras.
592592
- Sending two different cameras with one CallAgent is currently not supported.
593593
- On macOS Safari, background blur video effects (from @azure/communication-effects), can only be applied to one camera, and not both at the same time.

articles/communication-services/how-tos/calling-sdk/includes/raise-hand/raise-hand-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,5 @@ The `participantsWithRaisedHands` variable contains an array of participant obje
9191

9292
- `identifier`: the communication identifier of the participant.
9393
- `order`: the order in which the participant raised their hand.
94-
-
94+
9595
You can use this information to display a list of participants with the Raise Hand state and their order in the queue.

articles/communication-services/how-tos/calling-sdk/manage-calls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The following table show support for individual APIs in the Calling SDK related
4848
|Start a call to Microsoft 365 user | ✔️ | ✔️ |
4949
|Start a call to phone number | ✔️ | ✔️ |
5050
|Join a room |✔️ | |
51-
|Joina a Teams meeting | ✔️ | ✔️ |
51+
|Join a Teams meeting | ✔️ | ✔️ |
5252
|Join a call based on groupId | ✔️ | |
5353
|Accept or reject incoming call | ✔️ | ✔️ |
5454
|Hold and resume call | ✔️ | ✔️ |

0 commit comments

Comments
 (0)