From 3e3fa4ba1218cb21236714fffee2b716cc55be14 Mon Sep 17 00:00:00 2001 From: John Johnston Date: Thu, 29 Jul 2021 08:58:08 -0700 Subject: [PATCH] fix: client.add not adding buffers properly Fixed while getting AD thumbnailPhoto to work. --- lib/client/client.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/client/client.js b/lib/client/client.js index b982c3a..4f52dde 100644 --- a/lib/client/client.js +++ b/lib/client/client.js @@ -238,6 +238,8 @@ Client.prototype.add = function add (name, entry, controls, callback) { save[k].forEach(function (v) { attr.addValue(v.toString()) }) + } else if (Buffer.isBuffer(save[k])) { + attr.addValue(save[k]); } else { attr.addValue(save[k].toString()) }