Skip to content

Commit

Permalink
Fix link at getLineUser() (#1132)
Browse files Browse the repository at this point in the history
  • Loading branch information
KazuumiN authored Sep 17, 2023
1 parent 8df680f commit 13a333a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .auri/$vhgr4emb.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
package: "@lucia-auth/oauth" # package name
type: "patch" # "major", "minor", "patch"
---

Fix link at `getLineUser()`
2 changes: 1 addition & 1 deletion packages/oauth/src/providers/line.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const getLineUser = async (
accessToken: string,
idToken: string
): Promise<LineUser> => {
const request = new Request("GET https://api.line.me/v2/profile", {
const request = new Request("https://api.line.me/v2/profile", {
headers: {
Authorization: authorizationHeader("bearer", accessToken)
}
Expand Down

0 comments on commit 13a333a

Please sign in to comment.