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 eaedc1c commit 9d118daCopy full SHA for 9d118da
ide-common/src/main/kotlin/org/digma/intellij/plugin/activation/UserActivationService.kt
@@ -311,6 +311,9 @@ class UserActivationService : DisposableAdaptor {
311
312
313
private fun isBackendVersion03114OrHigher(about: AboutResult): Boolean {
314
+ if (about.applicationVersion == "unknown") {
315
+ return true
316
+ }
317
val currentServerVersion = ComparableVersion(about.applicationVersion)
318
val featureServerVersion = ComparableVersion("0.3.114")
319
return currentServerVersion.newerThan(featureServerVersion) ||
0 commit comments