Fix quote thumbnail flickering issue
Turns out that we reload thumbnails for every message when any new message is added to the conversation. This fix prevents that by actually checking for the proper sentinel on the message model
This commit is contained in:
parent
b0b1dc6be8
commit
9619e5b66d
1 changed files with 1 additions and 1 deletions
|
@ -1250,7 +1250,7 @@
|
|||
// If we already have a quoted message, then we exit early. If we don't have it,
|
||||
// then we'll continue to look again for an in-memory message to use. Why? This
|
||||
// will enable us to scroll to it when the user clicks.
|
||||
if (messages.quotedMessage) {
|
||||
if (message.quotedMessage) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue