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.
1 parent ef61ec0 commit 4085528Copy full SHA for 4085528
src/main/kotlin/org/digma/intellij/plugin/ui/list/insights/SpanPanelsUtil.kt
@@ -159,7 +159,7 @@ fun buildButtonToJaeger(
159
if (jaegerBaseUrl.isNullOrBlank() || traceSamples.isNullOrEmpty()) {
160
return null
161
}
162
- val filtered = traceSamples.filter { x -> x!!.hasTraceId() }
+ val filtered = traceSamples.filter { x -> x!=null && x.hasTraceId() }
163
if (filtered.isNullOrEmpty()) {
164
165
0 commit comments