updated sqlite binaries for electron 6 / node 12

This commit is contained in:
zadam 2019-05-31 18:46:23 +02:00
parent 68f67ec6ee
commit b0303ef529
9 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ function exec(opts) {
}; };
if (opts.auth) { if (opts.auth) {
const token = new Buffer(opts.auth.user + ":" + opts.auth.pass).toString('base64'); const token = Buffer.from(opts.auth.user + ":" + opts.auth.pass).toString('base64');
headers['Authorization'] = `Basic ${token}`; headers['Authorization'] = `Basic ${token}`;
} }