adminOtherside

Results 1 comments of adminOtherside

Maybe it's is because charset encoding.. maybe this resolve you problem: ``` for (const row of result) { for (const key in row) if (Buffer.isBuffer(row[key])) row[key] = row[key].toString('binary') } ```