Authored by 陈轩

fix

... ... @@ -179,6 +179,7 @@ const fetchLiveInfo = (roomID) => {
d.master_pic = helpers.image(d.master_pic, 180, 180);
d.humanTime = _formatTime(d.starting_time * 1000); // 预告 开始时间
d.video_src = d.hls_downstream_address;
d.audience_num = false; // 直播 观众人数 由弹幕获取
// 自定义数据
d.duration = _getHumanDuration(d.live_last_time);
... ...
... ... @@ -48,11 +48,17 @@
{{/if}}
</div>
<div class="live-num">
{{#if isRelay}}
<span>{{audience_num}}人观看</span>
{{else}}
<span></span>
{{/if}}
</div>
</div>
<div class="title hide" id="live-watermark">
{{#if watemark }}
<span>{{watermark}}</span>
{{/if}}
</div>
</div>
... ...