Fix sending voice messages
Fix unneeded reading of bottom messages
This commit is contained in:
parent
5ac206aea9
commit
ea195b380a
@ -692,6 +692,7 @@ export default class AudioElement extends HTMLElement {
|
||||
}
|
||||
|
||||
disconnectedCallback() {
|
||||
setTimeout(() => {
|
||||
if(this.isConnected) {
|
||||
return;
|
||||
}
|
||||
@ -705,11 +706,16 @@ export default class AudioElement extends HTMLElement {
|
||||
this.readyPromise.reject();
|
||||
}
|
||||
|
||||
if(this.listenerSetter) {
|
||||
this.listenerSetter.removeAll();
|
||||
this.listenerSetter = null;
|
||||
}
|
||||
|
||||
if(this.preloader) {
|
||||
this.preloader = null;
|
||||
}
|
||||
}, 100);
|
||||
}
|
||||
}
|
||||
|
||||
customElements.define("audio-element", AudioElement);
|
||||
|
@ -323,7 +323,7 @@ export default class ChatBubbles {
|
||||
const _items = this.bubbleGroups.itemsArr.slice();
|
||||
indexOfAndSplice(_items, item);
|
||||
const foundItem = this.bubbleGroups.findGroupSiblingByItem(newItem, _items);
|
||||
if(group === foundItem?.group/* && false */) {
|
||||
if(group === foundItem?.group || (group === this.bubbleGroups.getLastGroup() && group.items.length === 1)/* && false */) {
|
||||
log && log('item has correct position', item);
|
||||
this.bubbleGroups.changeBubbleMid(bubble, mid);
|
||||
return;
|
||||
@ -2902,21 +2902,22 @@ export default class ChatBubbles {
|
||||
|
||||
this.chat.dispatchEvent('setPeer', lastMsgId, !isJump);
|
||||
|
||||
this.setFetchReactionsInterval(afterSetPromise);
|
||||
Promise.all([
|
||||
this.setFetchReactionsInterval(afterSetPromise),
|
||||
this.setFetchHistoryInterval({
|
||||
afterSetPromise,
|
||||
lastMsgId,
|
||||
samePeer,
|
||||
savedPosition,
|
||||
topMessage
|
||||
});
|
||||
|
||||
}),
|
||||
]).then(() => {
|
||||
log('scrolledAllDown:', scrollable.loadedAll.bottom);
|
||||
|
||||
//if(!this.unreaded.length && dialog) { // lol
|
||||
if(scrollable.loadedAll.bottom && topMessage && !this.unreaded.size) { // lol
|
||||
this.onScrolledAllDown();
|
||||
}
|
||||
});
|
||||
|
||||
if(chatType === 'chat') {
|
||||
const dialog = await m(this.managers.appMessagesManager.getDialogOnly(peerId));
|
||||
|
@ -85,7 +85,7 @@ export default class ScrollSaver {
|
||||
|
||||
public save() {
|
||||
this.findAndSetElements();
|
||||
console.warn('scroll save', this.elements);
|
||||
// console.warn('scroll save', this.elements);
|
||||
this._save();
|
||||
}
|
||||
|
||||
@ -152,7 +152,7 @@ export default class ScrollSaver {
|
||||
const diff = newRect.bottom - rect.bottom;
|
||||
this.setScrollTop(scrollTop + diff, useReflow);
|
||||
// if(diff) debugger;
|
||||
console.warn('scroll restore', rect, diff, newRect);
|
||||
// console.warn('scroll restore', rect, diff, newRect);
|
||||
}
|
||||
|
||||
public _restore(useReflow?: boolean) {
|
||||
|
Loading…
Reference in New Issue
Block a user