()
| 485 | } |
| 486 | |
| 487 | private async _authorizeSession(): Promise<AuthSessionData | null> { |
| 488 | try { |
| 489 | const result = await this.sessionManager.authorize(); |
| 490 | return result; |
| 491 | } catch (err) { |
| 492 | log.error("authorization failed", err); |
| 493 | return null; |
| 494 | } |
| 495 | } |
| 496 | |
| 497 | private clearState() { |
| 498 | this.updateState({ |
no outgoing calls
no test coverage detected