1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 19:42:38 +02:00
This commit is contained in:
Daniel Neto 2024-12-06 16:17:30 -03:00
parent b11aa71032
commit 38cc1436c1

View file

@ -867,7 +867,7 @@ function playVideoSegment(startTime, endTime) {
function playerPlayIfAutoPlay(currentTime) {
console.log("playerPlayIfAutoPlay: forceCurrentTime:", currentTime);
console.log("playerPlayIfAutoPlay: forceCurrentTime:", currentTime, isLive);
if (isWebRTC()) {
return false;
}
@ -1094,6 +1094,7 @@ var startCurrentTime = 0;
var forceCurrentTime = null;
function setCurrentTime(currentTime) {
if(typeof isLive !== 'undefined' && isLive){
console.log("setCurrentTime: isLive", currentTime, isLive);
return false;
}
//console.log("setCurrentTime:", currentTime, forceCurrentTime);