Merge pull request #804 from nagisa77/codex/fix-jpasystemexception-for-pollpost

Fix poll multiple property null handling
This commit is contained in:
Tim
2025-08-31 14:22:59 +08:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -111,7 +111,7 @@ public class PostMapper {
.collect(Collectors.groupingBy(PollVote::getOptionIndex,
Collectors.mapping(v -> userMapper.toAuthorDto(v.getUser()), Collectors.toList())));
p.setOptionParticipants(optionParticipants);
p.setMultiple(pp.isMultiple());
p.setMultiple(Boolean.TRUE.equals(pp.getMultiple()));
dto.setPoll(p);
}
}

View File

@@ -33,7 +33,7 @@ public class PollPost extends Post {
private Set<User> participants = new HashSet<>();
@Column
private boolean multiple = false;
private Boolean multiple = false;
@Column
private LocalDateTime endTime;