diff --git a/backend/src/server/config/rateLimiter.ts b/backend/src/server/config/rateLimiter.ts index 2221bf9f1..997ed9daf 100644 --- a/backend/src/server/config/rateLimiter.ts +++ b/backend/src/server/config/rateLimiter.ts @@ -6,13 +6,13 @@ import { getConfig } from "@app/lib/config/env"; import { ActorType } from "@app/services/auth/auth-type"; const getDistinctRequestActorId = (req: FastifyRequest) => { - if (req.auth.actor === ActorType.USER) { + if (req?.auth?.actor === ActorType.USER) { return req.auth.user.username; } - if (req.auth.actor === ActorType.IDENTITY) { + if (req?.auth?.actor === ActorType.IDENTITY) { return `identity-${req.auth.identityId}`; } - if (req.auth.actor === ActorType.SERVICE) { + if (req?.auth?.actor === ActorType.SERVICE) { return ( `${req.auth.serviceToken.createdByEmail}-service-token` || `service-token-null-creator-${req.auth.serviceTokenId}` ); // when user gets removed from system