이벤트

- link를 빈칸으로 기록할 수 있도록 수정
This commit is contained in:
Klaus 2025-04-03 15:23:28 +09:00
parent 08848c783d
commit 3bb2753607
1 changed files with 1 additions and 1 deletions

View File

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