This commit is contained in:
2023-09-22 16:55:26 +01:00
parent e8519daa47
commit 8c7fbed191
18 changed files with 276 additions and 106 deletions

View File

@ -68,7 +68,10 @@ export class MultiAccountStore extends ExternalStore<LoginSession> {
}
getSessions() {
return [...this.#accounts.values()].map(v => unwrap(v.publicKey));
return [...this.#accounts.values()].map(v => ({
pubkey: unwrap(v.publicKey),
id: v.id,
}));
}
allSubscriptions() {