fix check

This commit is contained in:
Laurenz Rausche 2024-05-10 19:52:50 +00:00
parent 422a932057
commit 8abca8466f
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@auth-tools/express",
"version": "0.0.1-alpha.3",
"version": "0.0.1-alpha.4",
"description": "A structured authentication protocol for Javascript. (express)",
"main": "dist/index.js",
"repository": "https://github.com/auth-tools/auth-tools",
@ -18,7 +18,7 @@
"express": "^4.19.2"
},
"devDependencies": {
"@auth-tools/server": "^0.0.1-alpha.6",
"@auth-tools/server": "^0.0.1-alpha.7",
"@auth-tools/express": "link:.",
"@types/express": "^4.17.21",
"rimraf": "^5.0.5",

View File

@ -1,6 +1,6 @@
{
"name": "@auth-tools/server",
"version": "0.0.1-alpha.6",
"version": "0.0.1-alpha.7",
"description": "A structured authentication protocol for Javascript. (server)",
"main": "dist/index.js",
"repository": "https://github.com/auth-tools/auth-tools",

View File

@ -57,7 +57,7 @@ export function createCheck(
}
const decodeAccessToken = decodeToken(
refreshToken,
accessToken,
internal.config.secrets.accessToken
);