Skip to content

Commit

Permalink
Fix incorrect logic for stop time
Browse files Browse the repository at this point in the history
  • Loading branch information
Chrismarsh committed Jan 27, 2025
1 parent 619e32a commit dd1e045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/metdata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ bool metdata::next_nc()
_just_loaded_nc = false;

//_current_ts is already ++ from the next() call
if(!_is_multipart_nc && (_current_ts > _end_time))
if(_current_ts > _end_time)
{
return false;
}
Expand Down

0 comments on commit dd1e045

Please sign in to comment.