🐛 Ignore session information for JWTs generated for applications (#515)

This commit is contained in:
Eric Doughty-Papassideris
2024-06-05 23:32:57 +02:00
committed by ericlinagora
parent 90876e0094
commit 12251fb617
@@ -22,7 +22,7 @@ const jwtPlugin: FastifyPluginCallback = async (fastify, _opts, next) => {
const jwt: JwtType = await request.jwtVerify();
// Verify the SID exists and is valid except tokens for the public link
if (!jwt.public_token_document_id) {
if (!jwt.public_token_document_id && !jwt.application_id) {
await gr.services.console.getClient().verifyJwtSid(jwt.sid);
}