diff --git a/Telegram/SourceFiles/lottie/lottie_animation.cpp b/Telegram/SourceFiles/lottie/lottie_animation.cpp index 6a37ce534..4ece64add 100644 --- a/Telegram/SourceFiles/lottie/lottie_animation.cpp +++ b/Telegram/SourceFiles/lottie/lottie_animation.cpp @@ -128,7 +128,11 @@ std::unique_ptr CreateFromContent( const auto string = UnpackGzip(content); Assert(string.size() <= kMaxFileSize); - auto result = rlottie::Animation::loadFromData(string, std::string()); + auto result = rlottie::Animation::loadFromData( + string, + std::string(), + std::string(), + false); if (!result) { LOG(("Lottie Error: Parse failed.")); }