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
168168
169169 async handleSignalingMessage ( msg : SignalingMessage ) {
170170 this . signalingQueue . push ( msg as RTCSignalingMessage ) ;
171- await this . executeQueue ( ) ;
171+ this . executeQueue ( ) . catch ( err => { if ( err ) throw err } ) ;
172172 }
173173
174174 private async executeQueue ( ) {
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ export class ElectricalConnectionService extends TypedEmitter<ElectricalConnecti
114114 channel . send ( JSON . stringify ( packet ) ) ;
115115 } ) ;
116116 await channel . ready ( ) ;
117- this . queue . start ( ) ;
117+ this . queue . start ( ) . catch ( err => { if ( err ) throw err } ) ;
118118 } ) ;
119119
120120 // find the bus set or create a new one
You can’t perform that action at this time.
0 commit comments