Skip to content

Commit 98c7cc9

Browse files
committed
Update avatars
1 parent 28ddcef commit 98c7cc9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

howtos/how-to-make-a-threaded-chat/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
id: "threadsExampleReceiver",
4242
name: "Alice",
4343
44-
photoUrl: "https://talkjs.com/images/avatar-1.jpg",
44+
photoUrl: "https://talkjs.com/new-web/avatar-14.jpg",
4545
role: "default",
4646
});
4747
const talkSession = new Talk.Session({

howtos/how-to-make-a-threaded-chat/server.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ async function setup() {
193193
name: "Alice",
194194
email: ["[email protected]"],
195195
role: "default",
196-
photoUrl: "https://talkjs.com/images/avatar-1.jpg",
196+
photoUrl: "https://talkjs.com/new-web/avatar-14.jpg",
197197
}),
198198
});
199199

@@ -207,7 +207,7 @@ async function setup() {
207207
name: "Bob",
208208
email: ["[email protected]"],
209209
role: "default",
210-
photoUrl: "https://talkjs.com/images/avatar-2.jpg",
210+
photoUrl: "https://talkjs.com/new-web/avatar-15.jpg",
211211
}),
212212
});
213213
await receiver;
@@ -216,7 +216,7 @@ async function setup() {
216216
const conv = setupConversation();
217217
await conv;
218218

219-
const message = sendMessage("Hello this is a test message");
219+
const message = sendMessage("We've added reply threads to the chat!");
220220
await message;
221221
}
222222

0 commit comments

Comments
 (0)