Fixed a bug in the BFBS GSE Reader that sometimes would forget the GSE Label.
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 1m44s

This commit is contained in:
feyris-tan 2026-03-17 21:27:43 +01:00
parent 8f1ddcdadf
commit 61b238a4aa

View File

@ -160,7 +160,7 @@ namespace skyscraper8.GS.GSE_BFBS
{ {
byte[] gseDataBytes = fragmentations[gsePacket.FragmentId.Value].GetGseDataBytes(); byte[] gseDataBytes = fragmentations[gsePacket.FragmentId.Value].GetGseDataBytes();
ushort protocolType = fragmentations[gsePacket.FragmentId.Value].ProtocolType; ushort protocolType = fragmentations[gsePacket.FragmentId.Value].ProtocolType;
HandleAssembledFrame(protocolType, gseDataBytes, gsePacket.Label); HandleAssembledFrame(protocolType, gseDataBytes, fragmentations[gsePacket.FragmentId.Value].Label);
fragmentations[gsePacket.FragmentId.Value] = null; fragmentations[gsePacket.FragmentId.Value] = null;
return; return;
} }