fix(core): update

This commit is contained in:
Philipp Kunz 2020-01-13 07:58:54 +00:00
parent 2a46f2a306
commit 770e7d46ea

View File

@ -21,7 +21,7 @@ export const getBinary = async (
//so Buffer.concat() can make us a new Buffer
//of all of them together
const buffer = Buffer.concat(data);
response.body = buffer.toString('binary');
response.body = buffer;
done.resolve();
});
await done.promise;