|
@@ -93,6 +93,7 @@ export class LiveService {
|
|
|
};
|
|
|
this.timer && clearTimeout(this.timer);
|
|
|
this.timer_countdown && clearInterval(this.timer_countdown);
|
|
|
+ this.timer_countdown = null
|
|
|
this.options['token'] = '';
|
|
|
this.options['channel'] = '';
|
|
|
this.user_published_list = [];
|
|
@@ -464,7 +465,7 @@ export class LiveService {
|
|
|
if (this.countdown <= 120) {
|
|
|
this.alertTips('剩余通话时间不足2分钟,请及时充值');
|
|
|
}
|
|
|
- this.startCountdown();
|
|
|
+ !this.timer_countdown && this.startCountdown();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -593,7 +594,9 @@ export class LiveService {
|
|
|
);
|
|
|
console.log(newCamers);
|
|
|
newCamers &&
|
|
|
- (await this.localTracks.videoTrack.setDevice(newCamers.deviceId));
|
|
|
+ (await this.localTracks.videoTrack.setDevice({
|
|
|
+ cameraId: newCamers.deviceId,
|
|
|
+ }));
|
|
|
// .then(() => {
|
|
|
// this.tools['camera'] = !this.tools['camera'];
|
|
|
// this.currentUsedDevice.videoDevice = newCamers.deviceId;
|