We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b921ec2 commit 296576dCopy full SHA for 296576d
1 file changed
dojo/jira_link/helper.py
@@ -1236,12 +1236,12 @@ def issue_from_jira_is_active(issue_from_jira):
1236
logger.debug("Jira issue status category is 'undefined', no decision possible")
1237
case _:
1238
logger.warning("Unknown Jira status category key '%s', falling back to resolution check", key)
1239
-
+
1240
# the statusCategory is not specified or "undefined", fallback: checking if a resolution is set and evaluate it
1241
if not hasattr(issue_from_jira.fields, "resolution") or not issue_from_jira.fields.resolution:
1242
logger.debug("No resolution found, treating as active")
1243
return True
1244
1245
# some kind of resolution is present that is not None
1246
return False
1247
0 commit comments