From d0ebc2c7d1b29c24b0e517053061767df9d9823f Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 24 Jan 2023 16:59:21 -0600 Subject: [PATCH] Don't delete sessions for now --- src/state/models/session.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/state/models/session.ts b/src/state/models/session.ts index 6b3567ff13..38ac73b5d6 100644 --- a/src/state/models/session.ts +++ b/src/state/models/session.ts @@ -361,14 +361,14 @@ export class SessionModel { * Close all sessions across all accounts. */ async logout() { - if (this.hasSession) { + /*if (this.hasSession) { this.rootStore.api.com.atproto.session.delete().catch((e: any) => { this.rootStore.log.warn( '(Minor issue) Failed to delete session on the server', e, ) }) - } + }*/ this.clearSessionTokensFromAccounts() this.rootStore.clearAll() }