diff --git a/build/player/lottie.js b/build/player/lottie.js index 1366af451..bee12132f 100644 --- a/build/player/lottie.js +++ b/build/player/lottie.js @@ -9280,11 +9280,12 @@ isShapeInAnimatedModifiers: function isShapeInAnimatedModifiers(data) { var i = 0; var len = this.shapeModifiers.length; - + while (i < len) { if (this.shapeModifiers[i].isAnimatedWithShape(data)) { return true; } + i++; // Increment the value of 'i' to avoid an endless loop } return false;