()
| 735 | }; |
| 736 | |
| 737 | async fetchPendingUpdates(): Promise<ClientStateSyncSocketResult> { |
| 738 | const sessionState = this.props.sessionStateFunc(); |
| 739 | const result = await this.props.fetchPendingUpdates({ |
| 740 | ...sessionState, |
| 741 | keyserverID: this.props.keyserverID, |
| 742 | }); |
| 743 | const { sessionID, ...actionPayload } = result; |
| 744 | this.setNewReceivedSession(sessionID); |
| 745 | return actionPayload; |
| 746 | } |
| 747 | |
| 748 | stopPing() { |
| 749 | if (this.pingTimeoutID) { |
no test coverage detected