Skip to content

Commit 586b3e4

Browse files
committed
fix: change graphql api path
1 parent 6f42925 commit 586b3e4

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes to the "leetcode" extension will be documented in this file.
33

44
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
55

6+
## [0.18.4]
7+
### Added
8+
- change graphql path
9+
610
## [0.18.3]
711
### Added
812
- re-add cookie-based login method [PR#969](https://github.com/LeetCode-OpenSource/vscode-leetcode/pull/969)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-leetcode",
33
"displayName": "LeetCode",
44
"description": "Solve LeetCode problems in VS Code",
5-
"version": "0.18.3",
5+
"version": "0.18.4",
66
"author": "LeetCode",
77
"publisher": "LeetCode",
88
"license": "MIT",

src/shared.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export const urlsCn = {
140140
// base urls
141141
base: "https://leetcode.cn",
142142
graphql: "https://leetcode.cn/graphql",
143-
userGraphql: "https://leetcode.cn/graphql/noj-go/",
143+
userGraphql: "https://leetcode.cn/graphql/",
144144
login: "https://leetcode.cn/accounts/login/",
145145
authLoginUrl: `https://leetcode.cn/authorize-login/${protocol}/?path=leetcode.vscode-leetcode`,
146146
};

0 commit comments

Comments
 (0)