| 1804 | } |
| 1805 | |
| 1806 | bool DocumentData::isAnimation() const { |
| 1807 | return (type == AnimatedDocument) |
| 1808 | || isVideoMessage() |
| 1809 | || ((_filename.isEmpty() |
| 1810 | || _nameType == Core::NameType::Image |
| 1811 | || _nameType == Core::NameType::Video) |
| 1812 | && hasMimeType(u"image/gif"_q) |
| 1813 | && !(_flags & Flag::StreamingPlaybackFailed)); |
| 1814 | } |
| 1815 | |
| 1816 | bool DocumentData::isGifv() const { |
| 1817 | return (type == AnimatedDocument) |
no test coverage detected