airbnb / lottie-web

Render After Effects animations natively on Web, Android and iOS, and React Native. http://airbnb.io/lottie/
MIT License
30.42k stars 2.86k forks source link

Fix: added destroy null check #2929

Closed oguz3 closed 1 year ago

oguz3 commented 1 year ago

This pull request solves the this.elements[i].destroy() problem. The program was throwing an error because destroy was missing. therefore I added the check if destroy is available.

if (this.elements[i] && this.elements[i].destroy) { this.elements[i].destroy(); }

oguz3 commented 1 year ago

@bodymovin Is this approach correct?

bodymovin commented 1 year ago

thanks!