test #256

Merged
klaus merged 3 commits from test into main 2025-02-03 07:20:32 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 3e4bfef14e - Show all commits

View File

@ -15,10 +15,10 @@ class MemberNotificationService(private val repository: MemberNotificationReposi
var notification = repository.getMemberNotification(memberId = member.id!!)
if (notification == null) {
notification = MemberNotification(
uploadContent = uploadContent,
live = live,
message = message,
audition = audition
uploadContent = uploadContent ?: false,
live = live ?: false,
message = message ?: false,
audition = audition ?: false
)
notification.member = member
repository.save(notification)