Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 18c502a

Browse files
committed
feat(serve): Fixed contained ID -> container ID typo
1 parent 7c6ac55 commit 18c502a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/serve.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function getJwtData (request: express.Request, response: express.Response, expec
105105

106106
if (expectedContainerId) {
107107
if (expectedContainerId !== jwtData.cid) {
108-
response.status(403).send('Contained ID in JWT does not match expected.')
108+
response.status(403).send('Container ID in JWT does not match expected.')
109109
return null
110110
}
111111
} else if (jwtData.cid) {

0 commit comments

Comments
 (0)