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