Skip to content

Commit 174153d

Browse files
committed
fix flutter#8
1 parent 224e2e8 commit 174153d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/video_player/video_player/ios/Classes/FLTVideoPlayerPlugin.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ - (void)sendInitialized {
322322
CGFloat height = size.height;
323323

324324
// The player has not yet initialized.
325-
if (height == CGSizeZero.height && width == CGSizeZero.width && ![self isDurationIndefinite]) {
325+
if (height == CGSizeZero.height && width == CGSizeZero.width && [self isDurationIndefinite]) {
326326
return;
327327
}
328328
// The player may be initialized but still needs to determine the duration.

0 commit comments

Comments
 (0)