Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ private static boolean getQuestion(Question question, CodeTypeEnum codeTypeEnum,

private static String getContent(JSONObject jsonObject) {
StringBuffer sb = new StringBuffer();
sb.append(jsonObject.getString(URLUtils.getDescContent()));
sb.append(jsonObject.getString(URLUtils.getDescContent()).replace(" "," "));
Config config = PersistentConfig.getInstance().getConfig();
if (config.getShowTopics()) {
JSONArray topicTagsArray = jsonObject.getJSONArray("topicTags");
Expand Down