From 4bc30c84772e2e30d2a34f2f3f35048f7041ff5f Mon Sep 17 00:00:00 2001 From: hicaru Date: Sat, 16 Mar 2024 11:15:23 +0500 Subject: [PATCH] pump a new version --- core/background/connections/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/background/connections/index.ts b/core/background/connections/index.ts index 8bfe8e4..93e7896 100644 --- a/core/background/connections/index.ts +++ b/core/background/connections/index.ts @@ -133,7 +133,7 @@ export class AppConnectController { if (jsonData[Fields.CONNECTIONS_LIST]) { let data: AppConnection[] = JSON.parse(String(jsonData[Fields.CONNECTIONS_LIST])); - this.#identities = data; + this.#identities = data.filter((el) => el.accounts && el.domain); } } catch (err) { this.#identities = [];