mirror of
https://github.com/zadam/trilium.git
synced 2025-10-09 23:18:46 +08:00
updated sqlite binaries for electron 6 / node 12
This commit is contained in:
parent
68f67ec6ee
commit
b0303ef529
9 changed files with 1 additions and 1 deletions
Binary file not shown.
BIN
bin/deps/linux-x64/sqlite/electron-v6.0-linux-x64/node_sqlite3.node
Executable file
BIN
bin/deps/linux-x64/sqlite/electron-v6.0-linux-x64/node_sqlite3.node
Executable file
Binary file not shown.
Binary file not shown.
BIN
bin/deps/linux-x64/sqlite/node-v72-linux-x64/node_sqlite3.node
Executable file
BIN
bin/deps/linux-x64/sqlite/node-v72-linux-x64/node_sqlite3.node
Executable file
Binary file not shown.
Binary file not shown.
BIN
bin/deps/mac-x64/sqlite/electron-v6.0-darwin-x64/node_sqlite3.node
Executable file
BIN
bin/deps/mac-x64/sqlite/electron-v6.0-darwin-x64/node_sqlite3.node
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -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}`;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue