Bugfix: Many tables would be dropped for no reason. This is now fixed.
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 1m46s

This commit is contained in:
feyris-tan 2026-03-16 22:26:01 +01:00
parent ca9ed0f11a
commit 8f1ddcdadf
2 changed files with 1 additions and 3 deletions

View File

@ -123,7 +123,7 @@ namespace skyscraper5.Mpeg2
private bool EnsureContinuity(TsPacket packet)
{
//Found in ISO 13818-1.pdf, page 38
if (packet.GetPayload() != null)
if (packet.GetPayload() == null)
return true;
if (packet.PID == 0x1fff)

View File

@ -232,7 +232,5 @@ namespace skyscraper5.Skyscraper.Scraper
void OnDvbSisNit(int sourcePid, SisNitContainer nitContainer);
void OnDvbSisTdt(int sourcePid, DateTime? utcTime);
TaskQueue Tasks { get; set; }
}
}