|
@@ -31,8 +31,9 @@ public class DataTask implements ITask {
|
|
|
if (record == null) {
|
|
|
continue;
|
|
|
}
|
|
|
- if (record.getStr("impression") == null && record.getStr("description") == null) {
|
|
|
+ if (record.getStr("impression").isBlank() || record.getStr("description").isBlank()) {
|
|
|
continue;
|
|
|
+
|
|
|
}
|
|
|
Map<String, String> params = new HashMap<>();
|
|
|
params.put("exam_id", jsonObject.getString("id"));
|