Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/server/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License.AGPL.txt in the project root for license information.

FROM node:18.17.1-slim as builder
FROM node:20-slim as builder

# Install Python, make, gcc and g++ for node-gyp
RUN apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion components/server/src/auth/jwt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class AuthJWT {
const keyID = decodedWithoutVerification.header.kid;

if (!keyID) {
throw new Error("JWT token does not contain kid (key id) property.");
throw new Error("JWT token does not contain kid (key id) propertyaaaaaaa.");
}

if (!publicKeysByID[keyID]) {
Expand Down
Loading