We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3649f3 commit 3bec019Copy full SHA for 3bec019
1 file changed
src/main/java/mServer/crawler/sender/zdf/json/ZdfPubFormDeserializer.java
@@ -25,9 +25,9 @@ public ZdfPubFormResult deserialize(
25
26
for (JsonElement element : nodes) {
27
JsonObject node = element.getAsJsonObject();
28
- final Optional<String> sender = Optional.empty();
+ Optional<String> sender = Optional.empty();
29
if (!node.get("contentOwner").isJsonNull()) {
30
- JsonUtils.getElementValueAsString(node.getAsJsonObject("contentOwner"), "title");
+ sender = JsonUtils.getElementValueAsString(node.getAsJsonObject("contentOwner"), "title");
31
}
32
final Optional<String> topic = JsonUtils.getElementValueAsString(node, "title");
33
final Optional<String> countSeasons = JsonUtils.getElementValueAsString(node, "countSeasons");
0 commit comments