Commit 4cc72690 authored by killfen's avatar killfen

应用设置bug修复

parent c4b58778
...@@ -156,7 +156,9 @@ public class AppAction extends BaseAction { ...@@ -156,7 +156,9 @@ public class AppAction extends BaseAction {
sb.append(temp.substring(0, temp.trim().length()-1)).append("\r\n"); sb.append(temp.substring(0, temp.trim().length()-1)).append("\r\n");
} }
} }
app.setAppUrl(sb.toString()); if (!StringUtil.isBlank(sb.toString())) {
app.setAppUrl(sb.toString());
}
// 更新站点信息 // 更新站点信息
appBiz.updateEntity(app); appBiz.updateEntity(app);
this.outJson(response, ModelCode.APP, true, String.valueOf(pageNo), String.valueOf(managerRoleID)); this.outJson(response, ModelCode.APP, true, String.valueOf(pageNo), String.valueOf(managerRoleID));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment