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