File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
soa_services/electricalConnection/js/src Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ export class WebRTCPeerConnection extends TypedEmitter<PeerConnectionEvents> imp
168
168
169
169
async handleSignalingMessage ( msg : SignalingMessage ) {
170
170
this . signalingQueue . push ( msg as RTCSignalingMessage ) ;
171
- await this . executeQueue ( ) ;
171
+ this . executeQueue ( ) . catch ( err => { if ( err ) throw err } ) ;
172
172
}
173
173
174
174
private async executeQueue ( ) {
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ export class ElectricalConnectionService extends TypedEmitter<ElectricalConnecti
114
114
channel . send ( JSON . stringify ( packet ) ) ;
115
115
} ) ;
116
116
await channel . ready ( ) ;
117
- this . queue . start ( ) ;
117
+ this . queue . start ( ) . catch ( err => { if ( err ) throw err } ) ;
118
118
} ) ;
119
119
120
120
// find the bus set or create a new one
You can’t perform that action at this time.
0 commit comments