We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c4e269 commit a79a4d4Copy full SHA for a79a4d4
src/main/java/fr/insee/genesis/domain/service/rawdata/LunaticJsonRawDataService.java
@@ -378,6 +378,10 @@ private static void convertToCollectedVar(
378
Map<String, Object> states = JsonUtils.asMap(collectedVariable.getValue());
379
380
// nothing if no state
381
+ if (states == null || states.isEmpty()) {
382
+ continue;
383
+ }
384
+
385
if (states.containsKey(stateKey)) {
386
Object value = states.get(stateKey);
387
0 commit comments