Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/video_player/video_player/lib/src/sub_rip.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ List<Caption> _parseCaptionsFromSubRipString(String file) {
final List<Caption> captions = <Caption>[];
for (final List<String> captionLines in _readSubRipFile(file)) {
if (captionLines.length < 3) {
break;
continue;
}

final int captionNumber = int.parse(captionLines[0]);
Expand Down