Fix VoD seek timing issues introduced with getNowms feature

This commit is contained in:
Balder 2023-10-09 11:37:56 +02:00 committed by Thulinma
parent 5af441d16b
commit 431d03c733

View file

@ -2145,7 +2145,7 @@ namespace Mist{
} }
// Force valid packet if nowMs is higher than current packet time // Force valid packet if nowMs is higher than current packet time
if (M.getNowms(nxt.tid) > nxt.time){break;} if (!M.getVod() && M.getNowms(nxt.tid) > nxt.time){break;}
//Okay, there's no next page yet, and no next packet on this page either. //Okay, there's no next page yet, and no next packet on this page either.
//That means we're waiting for data to show up, somewhere. //That means we're waiting for data to show up, somewhere.