Skip to content

Commit 5e36d15

Browse files
authored
Suppress plugin incompatibility notice if plugin is disabled or incompatible (#4769)
1 parent f60dc5e commit 5e36d15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/core/jetbrains-community/src/software/aws/toolkits/jetbrains/PluginVersionChecker.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class PluginVersionChecker : ApplicationInitializedListener {
3131
}
3232

3333
val core = AwsToolkit.PLUGINS_INFO.get(AwsPlugin.CORE) ?: return
34-
val mismatch = AwsToolkit.PLUGINS_INFO.values.filter { it.descriptor != null && it.version != core.version }
34+
val mismatch = AwsToolkit.PLUGINS_INFO.values.filter { it.descriptor?.isEnabled == true && it.version != core.version }
3535

3636
if (mismatch.isEmpty()) {
3737
return

0 commit comments

Comments
 (0)