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!!) var notification = repository.getMemberNotification(memberId = member.id!!)
if (notification == null) { if (notification == null) {
notification = MemberNotification( notification = MemberNotification(
uploadContent = uploadContent, uploadContent = uploadContent ?: false,
live = live, live = live ?: false,
message = message, message = message ?: false,
audition = audition audition = audition ?: false
) )
notification.member = member notification.member = member
repository.save(notification) repository.save(notification)