fix #5967 Fix version check for stable release
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / util / ApplicationUtil.java
index 7282445a85499925805aa44799d933674be9d701..2774f50189622d6792482f3531ca52f2e37972a3 100644 (file)
@@ -57,7 +57,7 @@ public class ApplicationUtil extends AbstractUtility {
      * @return
      */
     public static boolean isStable() {
-        return !getVersion().startsWith("[");
+        return !getVersion().startsWith(BETA_PREFIX);
     }