We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b41ac41 commit 6b48d93Copy full SHA for 6b48d93
1 file changed
tools/report-converter/codechecker_report_converter/report/parser/plist.py
@@ -249,7 +249,7 @@ def __create_report(
249
location = diag.get("location", {})
250
checker_name = diag.get("check_name", UnknownChecker[1])
251
analyzer_name = self.__get_analyzer_name(checker_name, metadata)
252
- severity = self.get_severity(checker_name)
+ severity = diag.get("severity") or self.get_severity(checker_name)
253
254
report_annotation = diag["report-annotation"] \
255
if "report-annotation" in diag else None
0 commit comments