mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-18 23:27:09 +02:00
Fix possible crash on bad data.
This commit is contained in:
parent
54fa16424d
commit
368468447f
1 changed files with 3 additions and 1 deletions
|
@ -1194,7 +1194,9 @@ bool DocumentData::hasRemoteLocation() const {
|
|||
}
|
||||
|
||||
bool DocumentData::useStreamingLoader() const {
|
||||
if (const auto info = sticker()) {
|
||||
if (size <= 0) {
|
||||
return false;
|
||||
} else if (const auto info = sticker()) {
|
||||
return info->isWebm();
|
||||
}
|
||||
return isAnimation()
|
||||
|
|
Loading…
Add table
Reference in a new issue