Skip to content

Commit

Permalink
hotfix: add error print
Browse files Browse the repository at this point in the history
  • Loading branch information
gmkim20713 committed Jul 19, 2024
1 parent 705c2f9 commit d90057f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@ private Mono<byte[]> getPhotoismFiles(String qrUrl) {
return getFileAsByte(imageUrl);
});
})
.onErrorMap(e -> new PhotoQrUrlExpiredException());
.onErrorMap(e -> {
e.printStackTrace();
return new PhotoQrUrlExpiredException();
});
}

private Mono<byte[]> getHaruFilmFiles(String qrUrl) {
Expand Down

0 comments on commit d90057f

Please sign in to comment.