Commit 095b8a92 authored by Liang Ding's avatar Liang Ding

🐛 #12652

parent 2ec68010
...@@ -181,7 +181,8 @@ public class B3Receiver { ...@@ -181,7 +181,8 @@ public class B3Receiver {
article.put(Article.ARTICLE_VIEW_PWD, ""); article.put(Article.ARTICLE_VIEW_PWD, "");
final String content = article.getString(Article.ARTICLE_CONTENT); final String content = article.getString(Article.ARTICLE_CONTENT);
article.put(Article.ARTICLE_CONTENT, content); article.put(Article.ARTICLE_CONTENT, content);
articleMgmtService.addArticle(article); final JSONObject addRequest = new JSONObject().put(Article.ARTICLE, article);
articleMgmtService.addArticle(addRequest);
return; return;
} }
......
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