Skip to content

Commit

Permalink
Fixes an issue where playback may not start
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettmoon committed Apr 30, 2018
1 parent 4147384 commit 201db58
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 201db58

Please sign in to comment.