ucservice 1.6.0 → 1.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14129,6 +14129,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
14129
14129
  },
14130
14130
 
14131
14131
  videoRotateSize(li, rotateIndex) {
14132
+ if (!li) return;
14132
14133
  let video = li.querySelector('video');
14133
14134
  let videoWidth = video.videoWidth;
14134
14135
  let videoHeight = video.videoHeight;
@@ -15620,7 +15621,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
15620
15621
  this.packetsLostSum = 0;
15621
15622
  this.packetsReceivedSum = 0; //清除显示的视频信息
15622
15623
 
15623
- document.getElementById('info-' + (Number(this.index) + Number(1))).innerHTML = ''; //隐藏视频信息
15624
+ if (document.getElementById('info-' + (Number(this.index) + Number(1)))) document.getElementById('info-' + (Number(this.index) + Number(1))).innerHTML = ''; //隐藏视频信息
15624
15625
 
15625
15626
  this.tagBox.parent().find('.info').hide(); //隐藏音频喇叭
15626
15627
 
Binary file