Skip to content
Merged
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
2 changes: 1 addition & 1 deletion lib/plugins/leetcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ plugin.getCategoryProblems = function(category, cb) {
plugin.getProblem = function(problem, cb) {
log.debug('running leetcode.getProblem');
const user = session.getUser();
if (problem.locked && !user.paid) return cb('failed to load locked problem!');
//if (problem.locked && !user.paid) return cb('failed to load locked problem!');
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for non-premium user, what's the error now if fetching a locked question?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It will show "[ERROR] failed to load problem! [0]" when non-premium user try to access locked problem.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cool, this works for me


const opts = makeOpts(config.sys.urls.problem_detail);
opts.headers.Origin = config.sys.urls.base;
Expand Down