이벤트

- link를 빈칸으로 기록할 수 있도록 수정
This commit is contained in:
Klaus 2025-04-03 12:29:46 +09:00
parent 6e229af790
commit 08848c783d
1 changed files with 2 additions and 2 deletions

View File

@ -202,8 +202,8 @@ class EventService(
) )
} }
if (!link.isNullOrBlank() && event.link != link) { if (event.link != link) {
event.link = link event.link = if (link.isNullOrBlank()) null else link
} }
if (!title.isNullOrBlank() && event.title != title) { if (!title.isNullOrBlank() && event.title != title) {