Browse Source

Fix rare chat crash

master
Eduard Kuzmenko 2 years ago
parent
commit
27819f12ce
  1. 4
      .env
  2. 4
      src/components/chat/bubbles.ts

4
.env

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
API_ID=1025907
API_HASH=452b0359b988148995f22ff0f4229750
VERSION=1.5.0
VERSION_FULL=1.5.0 (189)
BUILD=189
VERSION_FULL=1.5.0 (190)
BUILD=190

4
src/components/chat/bubbles.ts

@ -3165,7 +3165,9 @@ export default class ChatBubbles { @@ -3165,7 +3165,9 @@ export default class ChatBubbles {
this.ejectBubbles();
for(const [bubble, oldBubble] of this.bubblesToReplace) {
scrollSaver.replaceSaved(oldBubble, bubble);
if(scrollSaver) {
scrollSaver.replaceSaved(oldBubble, bubble);
}
if(!loadQueue.find((details) => details.bubble === bubble)) {
continue;

Loading…
Cancel
Save