test #302

Merged
klaus merged 8 commits from test into main 2025-04-07 10:23:14 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 1bbaf8f7b7 - Show all commits

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) {