(event, data)
| 91 | }, |
| 92 | |
| 93 | _onPeerDCIncomingConnection(event, data) { |
| 94 | const { connection } = data; |
| 95 | const peers = this.model; |
| 96 | const peer = peers.findBy('peer.id', connection.peer); |
| 97 | |
| 98 | peer.set('peer.state', 'connected'); |
| 99 | }, |
| 100 | |
| 101 | _onPeerDCIncomingConnectionError(event, data) { |
| 102 | const { connection, error } = data; |
nothing calls this directly
no outgoing calls
no test coverage detected