@ -1750,11 +1750,11 @@ export default class ChatBubbles {
if(msgId>0&&msgId<=maxId){
if(msgId>0&&msgId<=maxId){
constbubble=this.bubbles[msgId];
constbubble=this.bubbles[msgId];
if(bubble){
if(bubble){
if(bubble.classList.contains('is-sending')){
if(bubble.classList.contains('is-outgoing')){
continue;
continue;
}
}
bubble.classList.remove('is-sent','is-sending');// is-sending can be when there are bulk of updates (e.g. sending command to Stickers bot)
bubble.classList.remove('is-sent','is-sending','is-outgoing');// is-sending can be when there are bulk of updates (e.g. sending command to Stickers bot)
bubble.classList.add('is-read');
bubble.classList.add('is-read');
}
}
@ -2714,7 +2714,7 @@ export default class ChatBubbles {
constpeerId=this.peerId;
constpeerId=this.peerId;
// * can't use 'message.pFlags.out' here because this check will be used to define side of message (left-right)
// * can't use 'message.pFlags.out' here because this check will be used to define side of message (left-right)