mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-13 04:37:11 +02:00
Fix crash in video messages.
This commit is contained in:
parent
cb8d40eaf2
commit
d26b64a5bb
1 changed files with 1 additions and 1 deletions
|
@ -1887,7 +1887,7 @@ void Gif::updateStatusText() const {
|
|||
const auto round = activeRoundStreamed();
|
||||
const auto own = activeOwnStreamed();
|
||||
if (round || (own && _data->isVideoFile())) {
|
||||
const auto frozen = !own->frozenFrame.isNull();
|
||||
const auto frozen = own && !own->frozenFrame.isNull();
|
||||
const auto streamed = round ? round : &own->instance;
|
||||
const auto state = streamed->player().prepareLegacyState();
|
||||
if (state.length) {
|
||||
|
|
Loading…
Add table
Reference in a new issue