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.
1 parent bb09530 commit a9fa36fCopy full SHA for a9fa36f
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