|
|
@@ -6,6 +6,7 @@ package kr.co.zumo.app.lifeplus.bean.api;
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
|
|
import kr.co.zumo.app.lifeplus.bean.JsonBeanBase;
|
|
|
+import kr.co.zumo.app.lifeplus.util.StringUtil;
|
|
|
|
|
|
/**
|
|
|
* ContentsDescriptionBean
|
|
|
@@ -34,7 +35,7 @@ public class ContentsMoreInfoBean extends JsonBeanBase {
|
|
|
}
|
|
|
|
|
|
public String getMoreInfo() {
|
|
|
- return moreInfo; //StringUtil.stripHtml(moreInfo);
|
|
|
+ return StringUtil.stripHtml(moreInfo.replace("\\n", "\n").replace("\n", "\\n"));
|
|
|
}
|
|
|
|
|
|
public void setMoreInfo(String moreInfo) {
|