Skip to content

A temp solution for locked problems. #96

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 29, 2018
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