8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c7939e7 + e8394d8 commit 8ab0ec8Copy full SHA for 8ab0ec8
lib/plugins/leetcode.js
@@ -138,7 +138,6 @@ plugin.getProblem = function(problem, cb) {
138
' enableRunCode',
139
' metaData',
140
' translatedContent',
141
- ' discussCategoryId',
142
' }',
143
'}'
144
].join('\n'),
@@ -166,7 +165,8 @@ plugin.getProblem = function(problem, cb) {
166
165
problem.testcase = q.sampleTestCase;
167
problem.testable = q.enableRunCode;
168
problem.templateMeta = JSON.parse(q.metaData);
169
- problem.discuss = q.discussCategoryId;
+ // @si-yao: seems below property is never used.
+ //problem.discuss = q.discussCategoryId;
170
171
return cb(null, problem);
172
});
0 commit comments