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 f60dc5e commit 5e36d15Copy full SHA for 5e36d15
plugins/core/jetbrains-community/src/software/aws/toolkits/jetbrains/PluginVersionChecker.kt
@@ -31,7 +31,7 @@ class PluginVersionChecker : ApplicationInitializedListener {
31
}
32
33
val core = AwsToolkit.PLUGINS_INFO.get(AwsPlugin.CORE) ?: return
34
- val mismatch = AwsToolkit.PLUGINS_INFO.values.filter { it.descriptor != null && it.version != core.version }
+ val mismatch = AwsToolkit.PLUGINS_INFO.values.filter { it.descriptor?.isEnabled == true && it.version != core.version }
35
36
if (mismatch.isEmpty()) {
37
return
0 commit comments