Skip to content

Commit

Permalink
Slightly adjust tag resolution in Nahima export
Browse files Browse the repository at this point in the history
  • Loading branch information
GenieTim committed Feb 29, 2024
1 parent 8e04da6 commit 86ee770
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1472,7 +1472,7 @@ public JSONObject findTagWithName(String name) throws IOException {
}

public JSONArray resolveWorkflowStatusTags(String workFlowStatus) throws IOException {
if (Objects.equals(workFlowStatus, WorkFlowStatus.STAGE_CLEAN)) {
if (Objects.equals(workFlowStatus, WorkFlowStatus.STAGE_CLEAN) || Objects.equals(workFlowStatus, WorkFlowStatus.STAGE_DONE)) {
return new JSONArray();
}

Expand Down

0 comments on commit 86ee770

Please sign in to comment.