We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2f4411 commit 29c52e2Copy full SHA for 29c52e2
‎tdrive/backend/node/src/services/console/clients/remote.ts
@@ -332,10 +332,11 @@ export class ConsoleRemoteClient implements ConsoleServiceClient {
332
const sessionRepository = gr.services.console.getSessionRepo();
333
if (!sessionRepository) return;
334
const sessions = (await sessionRepository.find({ sub: userId })).getEntities();
335
- for (const session of sessions) {
336
- session.revoked_at = new Date().getTime();
337
- await sessionRepository.save(session);
338
- }
+ for (const session of sessions)
+ if (!session.revoked_at) {
+ session.revoked_at = new Date().getTime();
+ await sessionRepository.save(session);
339
+ }
340
}
341
342
async verifyJwtSid(sid: string): Promise<void> {
0 commit comments