This commit is contained in:
雷欧(林平凡)
2025-01-10 09:10:08 +08:00
parent cad6037169
commit 7d6dc23266

View File

@@ -1001,7 +1001,8 @@ public class JDUtils {
order = order.replace("转链", "");
String[] split = order.split("\r\n");
for (String s : split) {
content.append("https://item.jd.com/").append(s.trim()).append(".html").append("\r\n");
String trim = s.trim();
content.append("https://item.jd.com/").append(trim).append(".html").append("\r\n");
}
}
} else {