File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ extern crate reqwest;
3
3
4
4
use std:: fmt:: { Display , Formatter , Error } ;
5
5
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" ;
8
8
const QUESTION_QUERY_STRING : & str = r#"
9
9
query questionData($titleSlug: String!) {
10
10
question(titleSlug: $titleSlug) {
@@ -20,7 +20,7 @@ const QUESTION_QUERY_OPERATION: &str = "questionData";
20
20
pub fn get_problem ( id : u32 ) -> Option < Problem > {
21
21
let problems = get_problems ( ) . unwrap ( ) ;
22
22
for problem in problems. stat_status_pairs . iter ( ) {
23
- if problem. stat . question_id == id {
23
+ if problem. stat . frontend_question_id == id {
24
24
let client = reqwest:: Client :: new ( ) ;
25
25
let resp: RawProblem = client. post ( GRAPHQL_URL )
26
26
. json ( & Query :: question_query ( problem. stat . question_title_slug . as_ref ( ) . unwrap ( ) ) )
You can’t perform that action at this time.
0 commit comments