Skip to content

Commit dd1e045

Browse files
committed
Fix incorrect logic for stop time
1 parent 619e32a commit dd1e045

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/metdata.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ bool metdata::next_nc()
726726
_just_loaded_nc = false;
727727

728728
//_current_ts is already ++ from the next() call
729-
if(!_is_multipart_nc && (_current_ts > _end_time))
729+
if(_current_ts > _end_time)
730730
{
731731
return false;
732732
}

0 commit comments

Comments
 (0)