Skip to content

Commit

Permalink
LPD-38666 com.liferay.ide.server.core: only show the error if the ver…
Browse files Browse the repository at this point in the history
…sion is below 7
  • Loading branch information
drewbrokke committed Nov 8, 2024
1 parent 2a68fde commit 4a101c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public IStatus validate() {
MessageFormat.format(Msgs.errorPortalRuntimeConfiguration, runtime.getName()), null);
}

if (!portalBundleVersion.startsWith("7")) {
if (portalBundleVersion.startsWith("5") || portalBundleVersion.startsWith("6")) {
return new Status(IStatus.ERROR, LiferayServerCore.PLUGIN_ID, 0, Msgs.errorPortalVersion70, null);
}

Expand Down

0 comments on commit 4a101c3

Please sign in to comment.