Fix for list limit in HLS/CMAF outputs when using non-live

This commit is contained in:
Thulinma 2022-08-03 14:58:05 +02:00
parent 508506c241
commit ed9910d587
2 changed files with 2 additions and 2 deletions

View file

@ -284,7 +284,7 @@ namespace Mist{
requestTid,
M.biggestFragment(timingTid) / 1000,
atol(H.GetVar("iMsn").c_str()),
config->getInteger("listlimit"),
M.getLive()? config->getInteger("listlimit") : 0,
urlPrefix,
systemBoot,
bootMsOffset,

View file

@ -173,7 +173,7 @@ namespace Mist{
requestTid,
M.biggestFragment(timingTid) / 1000,
atol(H.GetVar("iMsn").c_str()),
config->getInteger("listlimit"),
M.getLive()? config->getInteger("listlimit") : 0,
urlPrefix,
systemBoot,
bootMsOffset,