Closed philips77 closed 2 years ago
This PR fixes #479, a long existing issue where the Init Object was incorrectly resumed when reported offset was > 0.
The main part of this fix is here:
-let data = initPacket.subdata(in: Int(offset) ..< Int(initPacketLength - offset)) +let data = initPacket.subdata(in: Int(offset) ..< Int(initPacketLength))
Associated assert was also removed.
This PR fixes #479, a long existing issue where the Init Object was incorrectly resumed when reported offset was > 0.
The main part of this fix is here:
Associated assert was also removed.