fix(replication): fix replication from object info
This commit is contained in:
@ -50,6 +50,9 @@ const expand = (sphinx) => {
|
||||
if(values[val] === null)
|
||||
continue;
|
||||
|
||||
if(typeof values[val] == 'object')
|
||||
values[val] = JSON.stringify(values[val])
|
||||
|
||||
names += '`' + val + '`,';
|
||||
valuesData += sphinx.escape(values[val]) + ',';
|
||||
}
|
||||
|
Reference in New Issue
Block a user