Blimster / resp_client

A RESP (REdis Serialization Protocol) client for Dart.
MIT License
8 stars 4 forks source link

unicode string is cut off by two characters #10

Closed erf closed 3 years ago

erf commented 3 years ago

My issue #8 now return with unicode characters but is lacking the two last characters!

That is this:

  final resrult = await commands.set('someKey', 'abcØØhehe');
  final value = await commands.get('someKey');

Returns:

abcØØhe

and not

abcØØhehe

Maybe a unit code test would be an good idea.

Blimster commented 3 years ago

I released new version 0.2.1 and 1.1.1.

The issue is fixed an I added some tests ;-).