Try not sending content-transfer-encoding headers in changesets

This commit is contained in:
Kevin Anthoney 2016-08-08 22:33:21 +01:00
Родитель 792f331fd1
Коммит 3e2bc3701d
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -149,11 +149,11 @@ Batch.prototype.body = function()
let buf = '';
if(op.headers['Content-Type'] === undefined || _.isPlainObject(op.body)) {
msg += 'Content-Type: application/json\r\n';
msg += 'Content-Transfer-Encoding: binary\r\n';
//msg += 'Content-Transfer-Encoding: binary\r\n';
buf = JSON.stringify(op.body);
} else {
msg += `Content-Type: ${op.headers['Content-Type']}\r\n`;
msg += 'Content-Transfer-Encoding: binary\r\n';
//msg += 'Content-Transfer-Encoding: binary\r\n';
buf = op.body.toString();
}