Fixed a bug that might've caused a crash when reading Simmin stream.
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 12m23s

This commit is contained in:
feyris-tan 2026-06-29 20:17:41 +02:00
parent a6f888f144
commit a48bd6fe57
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
"profiles": {
"skyscraper8": {
"commandName": "Project",
"commandLineArgs": "\"Z:\\Persönliches\\Satellitescommunity\\Skyscraper Test Fixture\\brazilian-dvb-nip-000000.ts\"",
"commandLineArgs": "\"Z:\\Persönliches\\Satellitescommunity\\Skyscraper Test Fixture\\thor_11049v_simmin-radiomidun.ts\"",
"remoteDebugEnabled": false
},
"Container (Dockerfile)": {

View File

@ -1853,7 +1853,7 @@ namespace skyscraper5.Skyscraper.Scraper.Storage.InMemory
{
if (rmts == null)
rmts = new Rmt[ushort.MaxValue];
rmts[ushort.MaxValue] = rmt;
rmts[rmt.NetworkId] = rmt;
}
private Dictionary<Tuple<ushort, PhysicalAddress>, Tim> tims;

View File

@ -4,7 +4,7 @@ namespace skyscraper8;
public class VersionInfo
{
private const int PUBLIC_RELEASE = 20;
private const int PUBLIC_RELEASE = 21;
public static int GetPublicReleaseNumber()
{