Antiloveg пре 8 година
родитељ
комит
9e5a0d67ae
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      src/main/java/com/goafanti/common/controller/PortalController.java

+ 2 - 2
src/main/java/com/goafanti/common/controller/PortalController.java

@@ -72,10 +72,10 @@ public class PortalController extends BaseController {
 						a = Boolean.FALSE;
 						b = Boolean.FALSE;
 						industryCategory = "";
-						if (StringUtils.isBlank(s.getIndustryCategoryAS())) {
+						if (StringUtils.isNotBlank(s.getIndustryCategoryAS())) {
 							a = Boolean.TRUE;
 						}
-						if (StringUtils.isBlank(s.getIndustryCategoryBS())) {
+						if (StringUtils.isNotBlank(s.getIndustryCategoryBS())) {
 							b = Boolean.TRUE;
 						}
 						industryCategory += (a ? s.getIndustryCategoryAS() : "") + (a && b ? DELIMITER : "")