Avoid misinterpreting valid objects as encoded arrays in debug

This commit is contained in:
Nick O'Leary
2016-12-20 22:46:56 +00:00
parent 8423e2d245
commit bba3ca8cc0
2 changed files with 2 additions and 1 deletions

View File

@@ -89,7 +89,7 @@ RED.utils = (function() {
var isArray = Array.isArray(obj);
var isArrayObject = false;
if (obj && typeof obj === 'object' && obj.hasOwnProperty('type') && obj.hasOwnProperty('data')) {
if (obj && typeof obj === 'object' && obj.hasOwnProperty('type') && obj.hasOwnProperty('data') && ((obj.__encoded__ && obj.type === 'array') || obj.type === 'Buffer')) {
isArray = true;
isArrayObject = true;
}