-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix incorrect type which makes animated gifs not loop forever on device #22987
Conversation
Generated by 🚫 dangerJS |
Would appreciate if it would be possible to merge this change, thank you!! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hramos is landing this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
@chrisnojima merged commit 728a35f into |
…ce (facebook#22987) Summary: facebook#22985 This 1 liner fixes the animation looping being broken on ios devices. The original source of the bug is here: facebook@95ef882#diff-e57b12f931820d7e0949e5cbb2701dcfR35 We set the value to a special large float, and assign it to repeatCount which is also a float, so this should be a float. Changelog: [iOS] [Fixed] - Fix animated GIFs not looping forever Pull Request resolved: facebook#22987 Differential Revision: D13682645 Pulled By: hramos fbshipit-source-id: 96b0602b418e3ebe369427a24777cd4374ac5d48
…ce (#22987) Summary: #22985 This 1 liner fixes the animation looping being broken on ios devices. The original source of the bug is here: 95ef882#diff-e57b12f931820d7e0949e5cbb2701dcfR35 We set the value to a special large float, and assign it to repeatCount which is also a float, so this should be a float. Changelog: [iOS] [Fixed] - Fix animated GIFs not looping forever Pull Request resolved: #22987 Differential Revision: D13682645 Pulled By: hramos fbshipit-source-id: 96b0602b418e3ebe369427a24777cd4374ac5d48
…ce (facebook#22987) Summary: facebook#22985 This 1 liner fixes the animation looping being broken on ios devices. The original source of the bug is here: facebook@95ef882#diff-e57b12f931820d7e0949e5cbb2701dcfR35 We set the value to a special large float, and assign it to repeatCount which is also a float, so this should be a float. Changelog: [iOS] [Fixed] - Fix animated GIFs not looping forever Pull Request resolved: facebook#22987 Differential Revision: D13682645 Pulled By: hramos fbshipit-source-id: 96b0602b418e3ebe369427a24777cd4374ac5d48
…ce (facebook#22987) Summary: facebook#22985 This 1 liner fixes the animation looping being broken on ios devices. The original source of the bug is here: facebook@95ef882#diff-e57b12f931820d7e0949e5cbb2701dcfR35 We set the value to a special large float, and assign it to repeatCount which is also a float, so this should be a float. Changelog: [iOS] [Fixed] - Fix animated GIFs not looping forever Pull Request resolved: facebook#22987 Differential Revision: D13682645 Pulled By: hramos fbshipit-source-id: 96b0602b418e3ebe369427a24777cd4374ac5d48
#22985
This 1 liner fixes the animation looping being broken on ios devices. The original source of the bug is here: 95ef882#diff-e57b12f931820d7e0949e5cbb2701dcfR35
We set the value to a special large float, and assign it to repeatCount which is also a float, so this should be a float.
Changelog:
[iOS] [Fixed] - Fix animated GIFs not looping forever