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 9a0e155 commit 4657db6Copy full SHA for 4657db6
lib/plugins/leetcode.js
@@ -336,7 +336,7 @@ plugin.getSubmission = function(submission, cb) {
336
let re = body.match(/submissionCode:\s('[^']*')/);
337
if (re) submission.code = eval(re[1]);
338
339
- re = body.match(/distribution_formatted:\s('[^']+')/);
+ re = body.match(/runtimeDistributionFormatted:\s('[^']+')/);
340
if (re) submission.distributionChart = JSON.parse(eval(re[1]));
341
return cb(null, submission);
342
});
0 commit comments