Fix regression reported by @eduedix - not automatically playing

- Was introduced with `pause` prop
This commit is contained in:
Brent Vatne
2015-04-07 08:31:40 -07:00
parent 116ee6844f
commit 90a0f85cf9
2 changed files with 8 additions and 6 deletions

View File

@@ -76,6 +76,8 @@
@"canStepForward": [NSNumber numberWithBool:video.canStepForward],
@"target": self.reactTag
}];
[_player play];
}
- (void)setResizeMode:(NSString*)mode
@@ -85,11 +87,11 @@
- (void)setPause:(BOOL)wantsToPause
{
if (wantsToPause) {
[_player pause];
} else {
[_player play];
}
if (wantsToPause) {
[_player pause];
} else {
[_player play];
}
}