Fix null multiple field for poll posts

This commit is contained in:
Tim
2025-08-31 14:22:44 +08:00
parent 38ff04c358
commit 6a27fbe1d7
2 changed files with 2 additions and 2 deletions

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;