Просмотр исходного кода

#102 内容管理设置中栏目分类的显示权限

o2lee 5 лет назад
Родитель
Сommit
27276f1e85

+ 3 - 1
o2server/x_cms_assemble_control/src/main/java/com/x/cms/assemble/control/jaxrs/appinfo/ActionListAllManageableAppType.java

@@ -69,7 +69,9 @@ public class ActionListAllManageableAppType extends BaseAction {
 							if( appIdsForType == null ){
 								appIdsForType = new ArrayList<>();
 							}
-							wos.add( new Wo( appType, Long.parseLong( appIdsForType.size() + "") ));
+							if( appIdsForType.size() > 0 ) {
+								wos.add( new Wo( appType, Long.parseLong( appIdsForType.size() + "") ));
+							}
 						}
 					}
 				}