Skip to content

Commit d5d85bb

Browse files
fix: ignore extract_chapter_frames for project state
1 parent 79bc969 commit d5d85bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • cds/modules/theme/assets/bootstrap3/js/cds_deposit/avc/filters

cds/modules/theme/assets/bootstrap3/js/cds_deposit/avc/filters/overallState.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import _ from "lodash";
33

44
function overallState(depositStatuses) {
55
return function (tasks) {
6-
var values = _.values(tasks);
6+
var values = _.values(_.omit(tasks, "file_video_extract_chapter_frames"));
77
if (values.length !== 0) {
88
if (_.includes(values, "FAILURE")) {
99
return depositStatuses.FAILURE;

0 commit comments

Comments
 (0)