Skip to content

Commit f3e385a

Browse files
committed
fix broken links
1 parent dcc2cc5 commit f3e385a

File tree

1 file changed

+2
-2
lines changed
  • articles/communication-services/tutorials/virtual-visits/extend-teams

1 file changed

+2
-2
lines changed

articles/communication-services/tutorials/virtual-visits/extend-teams/call.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ callAgent.join(meetingLocator , new JoinCallOptions());
147147

148148
Those steps allow you to join the Teams meeting. You can then extend those steps with [management of speakers, microphone, camera and individual video streams](/azure/communication-services/how-tos/calling-sdk/manage-video?pivots=platform-web). Then, optionally, you can also integrate chat in the Virtual appointment experience.
149149

150-
Create a [ChatClient](https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-communication-chat/1.3.2-beta.1/classes/ChatClient.html) that initiates the SDK and give you access to notifications and [ChatThreadClient](https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-communication-chat/1.3.2-beta.1/classes/ChatThreadClient.html).
150+
Create a [ChatClient](/dotnet/api/azure.communication.chat.chatclient) that initiates the SDK and give you access to notifications and [ChatThreadClient](/dotnet/api/azure.communication.chat.chatthreadclient).
151151

152152
```js
153153
const chatClient = new ChatClient(
@@ -169,7 +169,7 @@ Subscribe to an event when message is received.
169169
chatClient.on("chatMessageReceived", (e) => { /*Render message*/})
170170
```
171171

172-
Create [ChatThreadClient](https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-communication-chat/1.3.2-beta.1/classes/ChatThreadClient.html) to initiate client for operations related to specific chat thread.
172+
Create [ChatThreadClient](/dotnet/api/azure.communication.chat.chatthreadclient) to initiate client for operations related to specific chat thread.
173173

174174
```js
175175
chatThreadClient = await chatClient.getChatThreadClient(threadIdInput.value);

0 commit comments

Comments
 (0)