We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7e9e5ad + c7c4294 commit 8a397d3Copy full SHA for 8a397d3
backend/src/main/kotlin/org/jetbrains/kotlinconf/backend/services/SessionizeService.kt
@@ -76,7 +76,10 @@ class SessionizeService(
76
val sessions = sessions.mapNotNull { it ->
77
val startsAt = it.startsAt ?: return@mapNotNull null
78
val endsAt = it.endsAt ?: return@mapNotNull null
79
- val tags = it.categoryItems.mapNotNull { tags[it]?.name }
+ val tags: List<String> = it.categoryItems.mapNotNull { tags[it]?.name }
80
+
81
+ if ("Interview" in tags) return@mapNotNull null
82
83
Session(
84
it.id,
85
it.displayTitle,
0 commit comments