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 : "")