Skip to content

Commit

Permalink
Fixes an issue where playback may not start (#896)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettmoon authored and Adlai-Holler committed May 2, 2018
1 parent f3aaa52 commit e072761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ASImageNode+AnimatedImage.mm
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ - (void)setAnimatedImage:(id <ASAnimatedImageProtocol>)animatedImage

- (void)_locked_setAnimatedImage:(id <ASAnimatedImageProtocol>)animatedImage
{
if (ASObjectIsEqual(_animatedImage, animatedImage)) {
if (ASObjectIsEqual(_animatedImage, animatedImage) && animatedImage.playbackReady) {
return;
}

Expand Down

0 comments on commit e072761

Please sign in to comment.