Skip to content

Commit 6854b42

Browse files
committed
Merge branch 'hotfix/zdf_nullpointer' into hotfix/3.1.278
2 parents 2fabc40 + fc0713c commit 6854b42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/mServer/crawler/sender/zdf/tasks/ZdfFilmTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ private static DatenFilm createFilm(final ZdfFilmDto zdfFilmDto, final DownloadD
6464

6565
@Override
6666
protected void processRestTarget(ZdfFilmDto aDTO, WebTarget aTarget) {
67-
final Optional<DownloadDto> downloadDto = deserialize(aTarget, OPTIONAL_DOWNLOAD_DTO_TYPE_TOKEN);
67+
final Optional<DownloadDto> downloadDto = deserializeOptional(aTarget, OPTIONAL_DOWNLOAD_DTO_TYPE_TOKEN);
6868
if (downloadDto.isPresent()) {
6969
addFilm(aDTO, downloadDto.get());
7070
} else {

0 commit comments

Comments
 (0)