Skip to content

Commit f1aa9db

Browse files
committed
fix: correct supportsPKCE bool return
fixes #710
1 parent ff1436e commit f1aa9db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1465,7 +1465,7 @@ function getServerHelpers(metadata: Readonly<ServerMetadata>) {
14651465
__proto__: null,
14661466
value(method = 'S256') {
14671467
return (
1468-
metadata.code_challenge_methods_supported?.includes(method) !== true
1468+
metadata.code_challenge_methods_supported?.includes(method) === true
14691469
)
14701470
},
14711471
},

0 commit comments

Comments
 (0)