Skip to content

Commit 9954801

Browse files
author
hzlinqien
committed
misc: Fix aylei#3
1 parent 0ba09bd commit 9954801

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/problem.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ extern crate reqwest;
33

44
use std::fmt::{Display, Formatter, Error};
55

6-
const PROBLEMS_URL: &str = "https://leetcode.com/api/problems/algorithms/";
7-
const GRAPHQL_URL: &str = "https://leetcode.com/graphql";
6+
const PROBLEMS_URL: &str = "https://leetcode-cn.com/api/problems/algorithms/";
7+
const GRAPHQL_URL: &str = "https://leetcode-cn.com/graphql";
88
const QUESTION_QUERY_STRING: &str = r#"
99
query questionData($titleSlug: String!) {
1010
question(titleSlug: $titleSlug) {
@@ -20,7 +20,7 @@ const QUESTION_QUERY_OPERATION: &str = "questionData";
2020
pub fn get_problem(id: u32) -> Option<Problem> {
2121
let problems = get_problems().unwrap();
2222
for problem in problems.stat_status_pairs.iter() {
23-
if problem.stat.question_id == id {
23+
if problem.stat.frontend_question_id == id {
2424
let client = reqwest::Client::new();
2525
let resp: RawProblem = client.post(GRAPHQL_URL)
2626
.json(&Query::question_query(problem.stat.question_title_slug.as_ref().unwrap()))

0 commit comments

Comments
 (0)