Browse Source

fix: 呼叫方如果没有摄像头,不允许发起呼叫

master
blue 2 years ago
parent
commit
dd88273b7d
  1. 5
      im-ui/src/components/rtc/RtcPrivateVideo.vue

5
im-ui/src/components/rtc/RtcPrivateVideo.vue

@ -114,7 +114,7 @@
//
this.startHeartBeat();
//
this.openStream().finally(() => {
this.openStream().then(() => {
this.webrtc.setStream(this.localStream);
this.webrtc.createOffer().then((offer) => {
//
@ -127,6 +127,9 @@
this.close();
})
})
}).catch(()=>{
//
this.close();
})
},
onAccept() {

Loading…
Cancel
Save