Showing
1 changed file
with
3 additions
and
1 deletions
| @@ -376,7 +376,9 @@ export struct PlayUIComponent { | @@ -376,7 +376,9 @@ export struct PlayUIComponent { | ||
| 376 | this.playerController?.pause() | 376 | this.playerController?.pause() |
| 377 | } else { | 377 | } else { |
| 378 | this.isPlayStatus = true | 378 | this.isPlayStatus = true |
| 379 | - this.playerController?.firstPlay(this.liveUrl) | 379 | + if (this.contentDetailData.liveInfo?.liveState == 'running') { |
| 380 | + this.playerController?.firstPlay(this.liveUrl) | ||
| 381 | + } | ||
| 380 | this.playerController?.play() | 382 | this.playerController?.play() |
| 381 | } | 383 | } |
| 382 | }) | 384 | }) |
-
Please register or login to post a comment