Skip to content

Commit e47be8f

Browse files
committed
Fix rider
1 parent e588056 commit e47be8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/ide/jetbrains/backend-plugin/src/main/kotlin/io/gitpod/jetbrains/remote/GitpodClientProjectSessionTracker.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ abstract class AbstractGitpodClientProjectSessionTracker(private val project: Pr
226226
private fun trackEvent(eventName: String, props: Map<String, Any?>) {
227227
if (session == null) return
228228
manager.trackEvent(eventName, mapOf(
229-
"sessionId" to session.clientId.value
229+
"sessionId" to session?.clientId?.value
230230
).plus(props))
231231
}
232232
}

0 commit comments

Comments
 (0)