Skip to content

Commit 5773af1

Browse files
authored
Merge pull request #54 from bpedroza/1.x-merge
1.x merge
2 parents 253837c + efe5467 commit 5773af1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "js-pkce",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"description": "A package that makes using the OAuth2 PKCE flow easier",
55
"main": "dist/PKCE.js",
66
"types": "dist/PKCE.d.ts",

src/PKCE.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,9 @@ export default class PKCE {
128128
headers: {
129129
'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
130130
},
131-
}).then((response) => response.ok)
132-
.catch(() => false);
131+
})
132+
.then((response) => response.ok)
133+
.catch(() => false);
133134
}
134135

135136
private checkEndpoint(propertyName: string) {

0 commit comments

Comments
 (0)