added if block for check response type

This commit is contained in:
Kostya
2024-01-30 14:21:02 +03:00
parent 53e4790cd5
commit deb62dd10c

View File

@@ -91,19 +91,21 @@ export default {
}, },
created() { created() {
GetChatHistory().then((response) => { GetChatHistory().then((response) => {
response.forEach((element) => { if (response && response.length) {
let imageUrl = "https://avatar.spworlds.ru/face/55/" + element.userName; response.forEach((element) => {
let imageUrl = "https://avatar.spworlds.ru/face/55/" + element.userName;
const MsgUser = { const MsgUser = {
id: this.id + 1, id: this.id + 1,
msg: element.message, msg: element.message,
username: element.userName, username: element.userName,
icon: imageUrl, icon: imageUrl,
}; };
this.array.push(MsgUser); this.array.push(MsgUser);
}); });
this.ScrollToBottom(); this.ScrollToBottom();
}
}); });
}, },
}; };