From ffba4e3683eb1c3a6bb10ab4bd3f10471516d9dd Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Wed, 1 Jun 2022 22:41:24 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):=20ji?= =?UTF-8?q?ra=20=E7=BC=96=E8=BE=91=E7=BC=BA=E9=99=B7=E5=9B=BE=E7=89=87?= =?UTF-8?q?=E4=BC=9A=E4=B8=8A=E4=BC=A0=E5=A4=9A=E4=BB=BD=E9=99=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1013360 --user=陈建星 【测试跟踪】GitHub# 13760 缺陷管理 同步jira 问题 https://www.tapd.cn/55049933/s/1170856 --- .../src/main/java/io/metersphere/track/issue/JiraPlatform.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/src/main/java/io/metersphere/track/issue/JiraPlatform.java b/backend/src/main/java/io/metersphere/track/issue/JiraPlatform.java index c8a6754846..680f8e501c 100644 --- a/backend/src/main/java/io/metersphere/track/issue/JiraPlatform.java +++ b/backend/src/main/java/io/metersphere/track/issue/JiraPlatform.java @@ -221,7 +221,8 @@ public class JiraPlatform extends AbstractIssuePlatform { if (StringUtils.isNotBlank(fieldName)) { if (item.getValue() != null) { if (StringUtils.isNotBlank(item.getType())) { - if (StringUtils.equalsAny(item.getType(), "richText")) { + if (StringUtils.equalsAny(item.getType(), "richText") + && !item.getId().equals("description")) { files.addAll(getImageFiles(item.getValue().toString())); } }