We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 403be84 commit 98a537bCopy full SHA for 98a537b
src/main/java/de/mediathekview/mserver/crawler/zdf/json/ZdfLetterPageDeserializer.java
@@ -30,6 +30,9 @@ public PagedElementListDTO<ZdfTopicUrlDto> deserialize(
30
JsonArray nodes = content.getAsJsonArray("nodes");
31
32
for (JsonElement element : nodes) {
33
+ if (element == null || element.isJsonNull()) {
34
+ continue;
35
+ }
36
JsonObject node = element.getAsJsonObject();
37
final Optional<String> sender =
38
JsonUtils.getElementValueAsString(node.getAsJsonObject("contentOwner"), "title");
0 commit comments