knopp / msgpack_dart

MsgPack implementation for dart / msgpack.org[Dart]
MIT License
56 stars 13 forks source link

Fixed ext8 serialization #3

Closed paramita closed 4 years ago

paramita commented 4 years ago

The length write for ext8 (0xc7) should be uint8 when serializing, spec.

Deserializer works correctly.

      case 0xc7:
        return _readExt(_readUInt8());
knopp commented 4 years ago

Thank you! This seems to have flown under the radar.