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,6 +91,7 @@ export default {
},
created() {
GetChatHistory().then((response) => {
if (response && response.length) {
response.forEach((element) => {
let imageUrl = "https://avatar.spworlds.ru/face/55/" + element.userName;
@@ -104,6 +105,7 @@ export default {
this.array.push(MsgUser);
});
this.ScrollToBottom();
}
});
},
};