diff --git a/CHANGELOG.md b/CHANGELOG.md index ace89296..89240263 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Fixed incorrect width of shapes borders in some cases +- Fixed annotation parser for tracks with a start frame less than the first segment frame ### Security - diff --git a/cvat/apps/engine/static/engine/js/annotationParser.js b/cvat/apps/engine/static/engine/js/annotationParser.js index 1f0cfc6d..447055c4 100644 --- a/cvat/apps/engine/static/engine/js/annotationParser.js +++ b/cvat/apps/engine/static/engine/js/annotationParser.js @@ -327,7 +327,7 @@ class AnnotationParser { shapes: [], }; - if (path.frame < this._startFrame || path.frame > this._stopFrame) { + if (path.frame > this._stopFrame) { continue; }