We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 249db31 commit 37c46f9Copy full SHA for 37c46f9
redisinsight/ui/src/utils/formatters/valueFormatters.tsx
@@ -139,7 +139,7 @@ const bufferToSerializedFormat = (
139
case KeyValueFormat.JSON: return reSerializeJSON(bufferToUTF8(value), space)
140
case KeyValueFormat.Msgpack: {
141
try {
142
- const decoded = decode(value.data)
+ const decoded = unpack(new Uint8Array(value.data)
143
const stringified = JSON.stringify(decoded)
144
return reSerializeJSON(stringified, space)
145
} catch (e) {
0 commit comments