이벤트

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

View File

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