-
Notifications
You must be signed in to change notification settings - Fork 492
Open
Description
When binary data is retrieved, it's using the ioredis.get
api returns the response as a utf-8 string. decoding the binary data as utf-8 results in mangled payloads because the utf-8 decode process replaces unknown bytes with the unicode replacement character �
. The mangled data is not readable.
Redis-commander should use the ioredis.getBuffer and only decode if the data is a string type, otherwise put the raw bytes through the base64 encoding process to ensure that the data is not mangled.
Metadata
Metadata
Assignees
Labels
No labels