RLottie: Fix infinite loop when paused

This commit is contained in:
Alexander Zinchuk 2022-11-01 18:53:23 +01:00
parent d2029a989f
commit b8573ebf35

View File

@ -336,7 +336,7 @@ class RLottie {
}
// Paused from outside
if (!this.isAnimating && Array.from(this.containers.values())[0]!.isOnLoadFired) {
if (!this.isAnimating) {
return false;
}