pq / osc

A simple Open Sound Control (OSC) protocol implementation for Dart.
BSD 3-Clause "New" or "Revised" License
32 stars 19 forks source link

fixed decoding of string arguments #11

Closed jeffmikels closed 4 years ago

jeffmikels commented 4 years ago

utf8.decode was decoding the entire string and skipping over nulls thereby missing arguments.

jeffmikels commented 4 years ago

Name: Jeff Mikels Email: jeffmikels@gmail.com

jeffmikels commented 4 years ago

The blob codec addition simply returns a string of bytes as the argument. It's up to the calling application to parse the blob.

pq commented 4 years ago

Thanks for contributing this work!