We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83da865 commit e3f7c84Copy full SHA for e3f7c84
1 file changed
src/server/services/cacheService.ts
@@ -147,7 +147,9 @@ export class CacheService {
147
throw new Error('No session ID found')
148
}
149
150
+ // eslint-disable-next-line @typescript-eslint/non-nullable-type-assertion-style
151
const state = (request.params.state as string) || ''
152
+ // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
153
const slug = (request.params.slug as string) || ''
154
const key = `${request.yar.id}:${state}:${slug}:`
155
0 commit comments