Skip to content

Commit

Permalink
fixed condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Hidanio committed Jan 25, 2024
1 parent 67c2b5f commit 9a44e7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vk/admstorm/AdmStormStartupActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class AdmStormStartupActivity : ProjectActivity {
val hasKphpStormNewVersion = hasNewVersion(AdmService.KPHPSTORM_PLUGIN_ID)
val hasModuliteNewVersion = hasNewVersion(AdmService.MODULITE_PLUGIN_ID)

if (!(hasAdmNewerVersion && hasModuliteNewVersion && hasKphpStormNewVersion)) {
if (!(hasAdmNewerVersion || hasModuliteNewVersion || hasKphpStormNewVersion)) {
return
}

Expand Down

0 comments on commit 9a44e7d

Please sign in to comment.