Updates to conflict-causing files.

This commit is contained in:
KotlinGeekDev
2025-03-08 00:52:10 +01:00
parent 1dcbcc04d2
commit 33d690c403
3 changed files with 2 additions and 68 deletions
@@ -64,6 +64,7 @@ abstract class GeneralListEvent(
fun title() = tags.firstNotNullOfOrNull(TitleTag::parse)
fun nameOrTitle() = name() ?: title()
fun description() = tags.firstOrNull { it.size > 1 && it[0] == "description" }?.get(1)
fun nameOrTitle() = name()?.ifBlank { null } ?: title()?.ifBlank { null }